How To Find All git Commits Containing a Specific Log Message
erics, Posted July 9th, 2020 at 4:27:41pm
Show commits and messages that match
1 |
git log --all --grep='SEARCH_STRING_HERE' |
Include code diffs
1 |
git log --all --grep='SEARCH_STRING_HERE' -p |
Include file names
1 |
git log --all --grep='SEARCH_STRING_HERE' --name-only |
Leave Your Comment
All fields marked with "*" are required.