2

Does git allow you to search for a query string in all checkin messages.

e.g. I want to get all the checkins which contain "quest" in their checkin message

user462455
  • 12,838
  • 18
  • 65
  • 96

1 Answers1

2

I believe you are looking for:

git log -g --grep=search_for_this

Similar question here.

Community
  • 1
  • 1
John D
  • 2,307
  • 17
  • 28