Reputation: 22550
I am using git and trying to find information about featurebranches in the master branch. How can I search for a string inside the git commit comments?
Upvotes: 0
Views: 163
Reputation: 30212
git git log --grep:
git log --all -i -E --grep="some.?regexp.?pattern"
Upvotes: 1