현재 작업 중인 가지는 master입니다.
administrator@vmgate:~/gittest$ git branch -v
* master ae5674d Edit failure.txt again
newfile fa7301f Create 2019AD.txt
newfile 가지에서 2019AD.txt 파일을 수정하는 작업을 마무리하고자 합니다. ➊ git checkout 명령으로 newfile 가지로 이동해서 ➋ 파일을 수정하고 ➌ 커밋합니다.
administrator@vmgate:~/gittest$ git checkout newfile ➊ administrator@vmgate:~/gittest$ echo 'Why does this chaos kill me?' >> 2019AD.txt ➋ administrator@vmgate:~/gittest$ git add 2019AD.txt administrator@vmgate:~/gittest$ git commit -m 'Close newfile' ➌ [newfile c1eea5f] Close newfile ...
newfile 가지에 새로운 커밋 c1eea5f가 추가되었습니다.
▲ 그림 13-8 newfile 가지에 커밋 추가