본문 바로가기
Programming/Git

[git] 불필요한 git tags 제거하기

by 째스터 2024. 2. 8.
728x90

다음과 같이 모든 local git tags를 제거하고, 모든 remote repo git tags를 fetch하면 된다.

git tag -l | xargs git tag -d
git fetch --tags
728x90

댓글