git tag tag_name
현재 버전에 tag 달기
git tag tag_name commit_hash
특정 버전에 tag 달기
git push origin tag_name
tag를 remote repository에 push
git tag
tag 목록보기
git show tag_name
tag 상세정보보기
git tag --delete tag_name
tag 삭제하기
git push --delete origin tag_name
remote repository에 있는 tag 삭제하기