10.8 태그를 사용한 체크아웃
태그는 특정 커밋을 가리키는 포인터입니다. 따라서 태그를 사용하여 특정 커밋으로 체크아웃할 수 있습니다. 체크아웃할 때 브랜치 이름 대신 태그 이름을 입력하면 됩니다.
$ git checkout 태그이름
infoh@DESKTOP MINGW64 /e/gitstudy10 (master)
$ git checkout 1.0.0 태그로 브랜치 이동
Note: checking out '1.0.0'.
You are in 'detached HEAD' state. You can look around, make experimental
changes and commit them, and you can discard any commits you make in this
state without impacting any branches by performing another checkout.
If you want to create a new branch to retain commits you create, you may
do so (now or later) by using -b with the checkout command again. Example:
git checkout -b <new-branch-name>
HEAD is now at 53028dc test 1.0.0
infoh@DESKTOP MINGW64 /e/gitstudy10 ((1.0.0)) 브랜치 이름이 태그 이름으로 출력됨