gitsearch

How do I search for branch names in Git?


I'd like to find a specific branch, and I know that its name would contain a specific substring (the id of the issue from our bug tracker), but I don't know the whole name of the branch (this is what I want to find out).

How can I search for this branch?


Solution

  • git branch --all | grep <id>