Git/tag

from HTYP, the free directory anyone can edit if they can prove to me that they're not a spambot
< Git
Revision as of 14:32, 14 December 2014 by Woozle (talk | contribs) (Created page with "==Examples== * '''git tag''' ** lists defined tags * '''git tag''' -a {{arg|tag string}} -m {{arg|description}} ** defines a new tag; will launch an editor to create the descr...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
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