mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-06-09 20:26:00 +02:00

Co-authored-by: Juri Dispan <juri.dispan@posteo.net> Co-authored-by: CleanMachine1 <78213164+CleanMachine1@users.noreply.github.com> Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com>
17 lines
343 B
Markdown
17 lines
343 B
Markdown
# git release
|
|
|
|
> Create a Git tag for a release.
|
|
> Part of `git-extras`.
|
|
> More information: <https://manned.org/git-release>.
|
|
|
|
- Create and push a release:
|
|
|
|
`git release {{tag_name}}`
|
|
|
|
- Create and push a signed release:
|
|
|
|
`git release {{tag_name}} -s`
|
|
|
|
- Create and push a release with a message:
|
|
|
|
`git release {{tag_name}} -m "{{message}}"`
|