Part 06. Git_Chapter 09. Tag

수야·2023년 8월 4일
0

tag생성

마지막 커밋에 태그 달기

git tag <tagname>

특정 버전에 태그 달기

git tag <tagname> <commithash>

tag 확인

로그로 확인

태그만 확인

git tag

태그 상세정보

git show <tagname>

tag push

태그를 리모트에도 보이게 푸시

git push origin <tagname>

tag 삭제

git tag --delete <tagname>

단, 이건 로컬에서만 삭제된거니
리모트에서 삭제하려면 푸시해야함

profile
수야는 코린이에서 더 나아갈거야

0개의 댓글