command

  1. 태그 목록 조회

    git tag -l
    CODE
  2. checkout

    git checkout tags/<tag_name>
    CODE
  3. 동시에 브랜치를 만드려면 -b 옵션 추가 

    git checkout tags/<tag_name> -b <branch_name>
    CODE

 http://stackoverflow.com/questions/791959/download-a-specific-tag-with-git


Source Tree

  1. 좌측의 Tags 아이콘 왼쪽의 > 를 눌러서 전체 태그를 표시

  2. 태그 목록에서 체크아웃할 태그를 클릭한 후에 마우스 우클릭 & Checkout 선택

  3. 해당 버전에서 작업 수행