Git/tag
< 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.