$ git tag hello
$ git describe --tags
hello
... work work ...
$ git commit -m "work stuff"
$ git describe --tags
hello-1-48281
Say what? What's the extra stuff? Doesn't look like a SHA1... is it possible to just get "hello" back?
feedback
|
"git describe" probably doesn't do what you think it does:
So, in your example of "hello-1-48281", git is saying, "the If you want a list of tags instead, just do | |||||
feedback
|
|
Look at the The first number is number of commits between (in your example) the current commit and the tag. The second should be | |||
|
feedback
|