diff options
author | Silvino Silva <silvino@bk.ru> | 2020-01-05 21:55:09 +0000 |
---|---|---|
committer | Silvino Silva <silvino@bk.ru> | 2020-01-05 21:56:17 +0000 |
commit | 2699bee925ca6ce95bf14bc95249b22952aaf478 (patch) | |
tree | 2ec98bf4f1a7954750822cfd49641c8987585a91 /dev/git/branch.html | |
parent | 627cd2d2e99c1bb9fce293375198da5e66c0ed4b (diff) | |
parent | 9a72a6e5cc23d29d510625c0c1677fb7ae465032 (diff) | |
download | doc-2699bee925ca6ce95bf14bc95249b22952aaf478.tar.gz |
doc release 0.6.0
Diffstat (limited to 'dev/git/branch.html')
-rw-r--r-- | dev/git/branch.html | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/dev/git/branch.html b/dev/git/branch.html index 24acff8..7b31604 100644 --- a/dev/git/branch.html +++ b/dev/git/branch.html @@ -201,7 +201,13 @@ <p id="tag">Tags are used to mark patch releases, get back in time to make security patches or to mark a new major or minor new release. Tag new release with projectname-version, this allows meaningful ports <a href="../core/ports.html">distfiles</a> when downloading releases from git archives;</p> <pre> - $ git tag -a projectname-1.2.0 + $ git tag -a projectname-1.2.0 -m "project 1.2.0 release" + $ git push origin projectname-1.2.0 + </pre> + + <p>To push all local tags;</p> + + <pre> $ git push --follow-tags </pre> |