bier hier
bier hier

Reputation: 22550

How to search in git commit comments?

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

Answers (1)

eftshift0
eftshift0

Reputation: 30212

git git log --grep:

git log --all -i -E --grep="some.?regexp.?pattern"

Upvotes: 1

Related Questions