반응형
[Git] tag
공부/Git2022. 3. 22. 20:16[Git] tag

tag 명령어 local에 있는 태그 조회 $ git tag local 태그 삭제 $ git tag -d 태그명 local 특정 커밋에 태그 추가 $ git tag 태그명 커밋ID 👉 default로 현재 HEAD 표시된 commit에 tag 추가 가능 remote 서버에 있는 tag 확인 $ git ls-remote --tags remote 서버에 있는 tag 내려받기 $ git fetch origin --tags 🔗https://stackoverflow.com/questions/8432953/how-to-update-local-tags-to-match-remote remote 서버에 있는 tag 삭제 $ git push origin --delete 태그명 remote 서버에 tag 올리기 $ git ..

반응형
image