Created
November 5, 2012 06:03
-
-
Save tattyamm/4015589 to your computer and use it in GitHub Desktop.
git tag関係
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
http://git-scm.com/book/ja/Git-%E3%81%AE%E5%9F%BA%E6%9C%AC-%E3%82%BF%E3%82%B0 | |
タグを作る | |
$ git tag -a v1.4 -m 'my version 1.4' | |
http://blog.s21g.com/articles/1359 | |
ローカルのtagをサーバーにpush | |
$ git push --tags | |
http://blog.appling.jp/archives/1332 | |
タグの削除(ローカルとリモート) | |
$ git tag -d <tag> # ローカルのタグを削除 | |
$ git push origin :refs/tags/<tag> # リモート先のタグを削除 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment