Reputation: 2902
In Tortoise Git, one can see commits and branches in the log, like 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:
But instead I can only find views of single branches ("master" and "testbranch").
Branch "master":
Branch "testbranch":
How can I see both branches and their commits together?
Upvotes: 0
Views: 1146
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