Skip to content

Instantly share code, notes, and snippets.

@tattyamm
Created November 5, 2012 06:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tattyamm/4015589 to your computer and use it in GitHub Desktop.
Save tattyamm/4015589 to your computer and use it in GitHub Desktop.
git tag関係
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