Skip to main content

GitTag

AndyBinOriginalLess than 1 minute

Conclusion

New tag (pointing to the latest commit_id)

git tag <tag_name>

New tag (pointing to a specific commit_id)

git tag <tag_name> <commit_id>

view all tags

git tag

Show details of a tag

git show <tag_name>

New tag with description

git tag -a <tag_name> -m "Caption" <commit_id>
Last update:
Contributors: rumosky
Comments
  • Latest
  • Oldest
  • Hottest