mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-22 14:22:07 +02:00

* pages/*: fix small typos * Update ssh-copy-id.md Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com> * ansible-inventory: fix typo * Update pages/linux/zathura.md Co-authored-by: Lena <126529524+acuteenvy@users.noreply.github.com> * gcloud: fix typo * fdesetup: mark as placeholder * icalbuddy: use general placeholder * ip: make it a placeholder * git-svn: fix typo * pages/*: fix typos * kubectl-get: add mnemonics and long options * kubectl-describe: add mnemonics and long options * pip-install: use short option * Update icalbuddy.md Co-authored-by: Lena <126529524+acuteenvy@users.noreply.github.com> --------- Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com> Co-authored-by: Lena <126529524+acuteenvy@users.noreply.github.com>
17 lines
381 B
Markdown
17 lines
381 B
Markdown
# git release
|
|
|
|
> Create a Git tag for a release.
|
|
> Part of `git-extras`.
|
|
> More information: <https://github.com/tj/git-extras/blob/master/Commands.md#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}}"`
|