Git/tag
from HTYP, the free directory anyone can edit if they can prove to me that they're not a spambot
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Examples
- git tag
- 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