git search for branch code example
Example 1: git get local branches
git branch -l
Example 2: git search all branches
git grep "string/regexp" $(git rev-list --all)
git branch -l
git grep "string/regexp" $(git rev-list --all)