Where can I access the corresponding message of git tags in Sourcetree. The context menu of a tag seems not to offer such an option.
Asked
Active
Viewed 7,895 times
8
2 Answers
12
This is dependent on whether it's Mac or Windows, and whether you're using Git or Mercurial. Since you're using Git that information is available - you can just context-click on a tag from the sidebar and click 'Details' which will show you the metadata related to that tag.
Hope that helps.

Kieran Senior
- 17,960
- 26
- 94
- 138
-
Is there any way to view this without going to the Tab list? Ie. By right-clicking on a tag inside the source tree? – Angelo Dec 12 '14 at 01:32
2
git show tag-name
will show you the message and the commit the tag is pointing to including it's message as well.
I don't know of a way to see it via gitk
.

Adam Dymitruk
- 124,556
- 26
- 146
- 141
-
1
-
There is no option for that unfortunately. File a feature request? – Adam Dymitruk Oct 13 '12 at 20:06
-