vote up 1 vote down star

Gitk has a nice habit of showing me Tags:, Follows: and Precedes: for commit. How do I get the same information from command line?

flag

21% accept rate

2 Answers

vote up 3 vote down check

To show the tag of a commit:

$ git describe --tags <commit>

To show the preceding commit:

$ git rev-list -1 <commit>^

To show the following commit:

$ git rev-list -1 <commit>..HEAD
link|flag
Follows: and Precedes: actually relate to tags, not commits. So your rev-list examples in fact answer different question. But that is ok, since 'git describe' is just what I was looking for. Thanks! – artemave Nov 5 at 15:05
OK -- sorry, I do not use gitk! But I'm glad I still gave something useful – Ben James Nov 5 at 16:02
The solution is git describe + git describe --contains (as per two answers) – Jakub NarÄ™bski Nov 6 at 19:53
Also there is git describe --abbrev=0 <commit> trick... and git log --decorate. – Jakub NarÄ™bski Nov 7 at 9:03
vote up 2 vote down

To show the tags that contain a commit (i.e. tags the precede a commit):

git tag --contains <commit>
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.