Kjara
Kjara

Reputation: 2902

show branches and commits for local (non pushed) state

In Tortoise Git, one can see commits and branches in the log, like here:

enter image description here

I'd like to see the same also in my local state, i.e. what I have done on my computer but not pushed. But I can't see it. Is that possible?

I created a new branch "testbranch" from the selected state in branch "master", then did one commit ("test commit") in testbranch. This is what I expected to see in the graph:

enter image description here

But instead I can only find views of single branches ("master" and "testbranch").

Branch "master":

enter image description here

Branch "testbranch":

enter image description here

How can I see both branches and their commits together?

Upvotes: 0

Views: 1146

Answers (1)

MrTux
MrTux

Reputation: 34003

You can select "All branches" in the lower left or click on the branch name in the upper left and select alls branches that you want to see in the Reference Browser.

cf. https://tortoisegit.org/docs/tortoisegit/tgit-dug-showlog.html

Upvotes: 1

Related Questions