How can I view the history of a branch that isn't checked out?

845 Views Asked by At

How can I view the history of a branch or a commit, that isn't the one I've currently got checked out?

If I'm on master, and I want to see the log of a sidebranch, or a commit, or a tag, then in the command line this is very easy:

git log $BRANCH_NAME
git log $COMMIT_HASH
git log $TAG

...but I'm not finding any way to do that in SourceTree.

The best I've found is:

  • Check out the thing whose log I want to see. This obviously touches a whole bunch of files unnecessarily.
  • If the log view is displaying all branches, I can jump to a branch or a commit in the log view -- but, I'll have all branches in the log view; I can't see just the branch/history that interests me.

Am I missing something? I'm having a hard time understanding how you can even use git effectively without being able to navigate your history and zoom in on things.

0

There are 0 best solutions below