Git/tag

from HTYP, the free directory anyone can edit if they can prove to me that they're not a spambot
< Git
Jump to navigation Jump to search

Examples

  • git tag
    • lists defined tags
  • git tag -a <tag string> -m <description>
    • defines a new tag; will launch an editor to create the description if it is not specified

Notes

To include tags in a push, use the --tags option with the git push command.

Links