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
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

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