Skip to content

git tag

Title
git tag
Category
Git
Tags
Aliases
git tag태그
Created
2 years ago
Updated
last year

태그 조회하기

sh
$ git tag
$ git tag

태그 변경 및 삭제하기

sh
$ git tag -d v1.0.0
$ git tag -d v1.0.0

원격 저장소에 올라간 태그 삭제하기

sh
$ git push origin :v1.0.0
$ git push origin :v1.0.0

Released under the MIT License.