git log
git checkout -b test-branch
로컬에서 브랜치 생성
git checkout -b test-branch
remote branch에 push
git push origin test-branch
local - remote 브랜치 연동 작업
git branch --set-upstream-to origin/test-branch
git checkout -b test-branch
로컬에서 브랜치 생성
git checkout -b test-branch
remote branch에 push
git push origin test-branch
local - remote 브랜치 연동 작업
git branch --set-upstream-to origin/test-branch