0

When I look at my repo login Git on the web (GitLab), there is a Commit ID for each commit

e.g.

Commit e7123ff4  authored 1 month ago by xxxx

When I look at the log using TortoiseGit I cannot see this ID - How can I see that?

kpollock
  • 3,899
  • 9
  • 42
  • 61

2 Answers2

2

The Commit ID (often also called SHA-1) is always displayed above the log message in the log dialog for a selected revision (in your case look for the SHA-1: e7123ff4... line; on GitLab/GitHub this is often abbreviated).

Also, it is possible to display a SHA-1 column so that you can see them all without selecting a revision. This can be done by opening the context menu on the column headers.

TortoiseGit Log Dialog

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

MrTux
  • 32,350
  • 30
  • 109
  • 146
0

See the pane below the tree - there should be a line SHA-1: e7123ff4... (e7123ff4 is an abbreviation of the full commit id)

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

9bO3av5fw5
  • 882
  • 5
  • 14
  • ah, I did that, but I didn't know/notice that the one in GitLab was only an abbrevation! Thanks!! – kpollock Sep 14 '18 at 09:55
  • https://stackoverflow.com/questions/18134627/how-much-of-a-git-sha-is-generally-considered-necessary-to-uniquely-identify-a may be of interest... – 9bO3av5fw5 Sep 14 '18 at 10:23