show/hide this revision's text 2 added 37 characters in body

Have you tried:

git grep --help ?ls-tree might help. To search across all existing branches:

git grep <something> 

for branch in `git branch | sed 's/\*//'`
s/\*//'`; do
  echo $branch :; git ls-tree $branch | grep '<foo>'
done
show/hide this revision's text 1

Have you tried: git grep --help ?

To search across all existing branches:

git grep <something> `git branch | sed 's/\*//'`