This will only search the current branch:
git log --grep='some-term'
To search all branches, use:
git log --all --grep='some-term'
More: https://stackoverflow.com/questions/7124914/how-to-search-a-git-repository-by-commit-message
This will only search the current branch:
git log --grep='some-term'
To search all branches, use:
git log --all --grep='some-term'
More: https://stackoverflow.com/questions/7124914/how-to-search-a-git-repository-by-commit-message