How do you search for a branch in SourceTree.
It has gotten to the point where i have hundreds of branches and looking through a list in the remote branch tree is next to impossible.
Is there a way of doing it?
How do you search for a branch in SourceTree.
It has gotten to the point where i have hundreds of branches and looking through a list in the remote branch tree is next to impossible.
Is there a way of doing it?
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.
In the sourcetree under the left menu look for 'REMOTES' under this you can search the origin where all the branches can be viewed or searched