Git tag

JYJ·2022년 3월 19일
0

Git / Github

목록 보기
9/10

git tag


  • 특정 버전 (commit)에 tag를 달아놓을 필요가 있을 때 사용

✔ 현재 버전에 tag 달기

git tag <tagname>

✔ 특정 버전에 tag 달기

git tag <tagname> <commithash>


✔ tag를 remote repository에 push 하기

git push origin <tagname>

✔ tag 목록 확인하기

git tag

✔ tag 상세정보 확인하기

git show <tagname>

✔ local에서 tag 삭제하기

git tag --delete <tagname>

✔ remote에서 tag 삭제하기

git push --delete origin <tagname>

profile
Study note

0개의 댓글