코드를 효율적으로 관리할 때 사용

git status
우선 브랜치를 만들기 전 현재의 상태를 확인한다. tree clean 상태가 아니라면 commit 후 실행하자.

git branch test
test명으로 새로운 가지를 생성했다.

git branch
현재 master 에서 test 로 옮겨보자

git checkout test
test로 옮겼다.
Share article
git status
git branch test
git branch
git checkout test
devJun