LoginSignup
0
0

More than 5 years have passed since last update.

Git tag打ちのメモ(作成、確認、push、削除)

Posted at

tagの打ち方

  • タグ作成

    
    git tag -a 1.0.0 -m 'コメント'
    
  • タグ確認

    
    git tag
    
  • tagをpush

    
    git push --tags
    
  • タグを削除

    
    git tag -d [タグ名]
    git push origin :refs/tags/[タグ名]
    
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0