How to search for a branch in SourceTree

How to search for a branch in SourceTree.

It has come to the point that I have hundreds of branches, and it is almost impossible to view the list in the remote branch tree.

Is there any way to do this?

+15
git branch atlassian-sourcetree
source share
3 answers

I don't think this is possible directly in SourceTree, but you can bind branches using the command line

git branch --all | grep <query> 

eg

 git branch --all | grep notifications 

Will return all branches (remote or local) containing notifications in the name.

+11
source share

In the source tree in the left menu, find "REMOTES", in this you can find the source where you can view or find all the branches.

0
source share

Go to:
Jump to

Use the Go To: option in the upper right corner of the log view.

-one
source share

All Articles