8

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.

nwellnhof
  • 32,319
  • 7
  • 89
  • 113
wnrph
  • 3,293
  • 4
  • 26
  • 38

2 Answers2

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.

enter image description here

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