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
|
2 | added 37 characters in body | ||
|
Have you tried: git grep --help ?ls-tree might help. To search across all existing branches: |
||||
|
1 |
|
||
|
Have you tried: git grep --help ? To search across all existing branches:
|
||||