프로그래밍/Git 사용법
Git Tag
tagbranch는 commit에 따라 업데이트 되지만tag는 언제나 똑같은것을 가리킨다.(특정 commit을 표시하는 용도) 태그만들기git tag 는 현재 branch라면 생략가능 태그조회git tag 특정 테그 조회git tag -v 특정 tag로 돌아가기git checkout annotated tag(자세한 tag)만들기git tag -a -m tag를 원격 저장소에 업로드하기(github releases에 추가됨)그냥 push로는 tag는 업로드 되지 않는다.git push --tags tag 삭제git tag -d 버전 관리에 대한 정리https://semver.org/lang/ko/
2020. 6. 11. 10:11
최근댓글