Skip to content

Instantly share code, notes, and snippets.

@lastab
Created January 4, 2018 10:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lastab/5988699cd3514bb4d9979d0a84836dc6 to your computer and use it in GitHub Desktop.
Save lastab/5988699cd3514bb4d9979d0a84836dc6 to your computer and use it in GitHub Desktop.
git search file_name by branch
for branch in `git for-each-ref --format="%(refname)" refs/heads`; do
echo $branch :; git ls-tree -r --name-only $branch | grep '<foo>'
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment