The stuff I do

Search git commits

← Notes

Tags: [git][commit][search]

Find commits which change the number of occurences of a string 🔗

git log -SsearchedString

Find commits with a commit message including a string 🔗

git log --grep=searchedString

← Notes

Back to top