Day113 — Search branch in git
1 min readOct 9, 2019
Searching branch name is not available in SourceTree. However, it is in Tower. Shift+command+A
(Quick Actions) then type the branch name.
Search branch with command:
# search the branch
git branch --all | grep <branch-name>
# check out that branch
git checkout <branch-name>