검색결과 리스트
글
TOOL/VCS
2017. 9. 23. 00:28
!markdown
# Git Tag 모두 지우기
위험하니 신중하게...
### Delete local tags. (로컬저장소의 모든 태그 지우기)
```bash
git tag -d $(git tag -l)
```
### Delete remote tags. (원격저장소의 모든 태그 지우기)
```bash
git fetch
```
```bash
git push origin --delete $(git tag -l)
```
### Reference
- Remove all git tags: [https://gist.github.com/okunishinishi/9424779](https://gist.github.com/okunishinishi/9424779)
'TOOL > VCS' 카테고리의 다른 글
[Git] 개발자별로 작업한 코드 줄 수 확인하기 (0) | 2019.12.23 |
---|---|
[Git] remote 추가하기 (0) | 2019.12.23 |
[Git] 현재의 tag명, branch명 알아내기 (0) | 2017.04.27 |
[Git] gitk 소스내용 한글 깨짐 해결 (0) | 2016.08.12 |
[Git] reflog 작업 복구하기 (0) | 2016.07.15 |