2

I need to get file list from all branch where commit message contain bug id (eg. 1000 and 2000) can anyone help? Thanks

2 Answers2

5

This command will show you all committed files into every commit with the message, containing Build-ID substring:

git log --graph --pretty=oneline --name-only --grep="bug_id"
hamsternik
  • 1,376
  • 3
  • 18
  • 26
2

go to the git initialized folder and execute the command.

 git show :/bug_id

bug_id in your case.

Pavan
  • 543
  • 4
  • 16