How do you search for a branch in SourceTree
Yes, there is a filter provided in SourceTree at the bottom left corner below the list of all branches. See in the screenshot. NOTE: This is on MAC..
I don't think this is possible directly in SourceTree, but you can grep branches via the command line
git branch --all | grep <query>
for example
git branch --all | grep notifications
Will return all branches (remote or local) that contain notifications
in the name.