Table of Contents |
---|
command
태그 목록 조회
Code Block git tag -l
checkout
Code Block git checkout tags/<tag_name>
동시에 브랜치를 만드려면 -b 옵션 추가
Code Block git checkout tags/<tag_name> -b <branch_name>
http://stackoverflow.com/questions/791959/download-a-specific-tag-with-git
Source Tree
- 좌측의 Tags 아이콘 왼쪽의 > 를 눌러서 전체 태그를 표시
- 태그 목록에서 체크아웃할 태그를 클릭한 후에 마우스 우클릭 & Checkout 선택
- 해당 버전에서 작업 수행