local repository 를 생성하지 않은 상태에서 git clone 명령어를 사용하여 remote repositroy를 local로 복제할 수 있다
git clone http://username:token@repoistory code
앞서 git이 관리할 폴더를 만들고, git init으로 해당 폴더를 초기화 하고, remote repository를 등록하고, remote repository의 내용을 pull 하는 모든 과정을 git clone 명령어 하나로 다 할 수 있음
git branch
local repository에 있는 branch만 검색
git branch -r
remote repository에 있는 branch 검색
git branch -a
(-a = all)
local+remote 의 branch들을 조회
git branch branch_name
git checkout branch_name
git checkout -b branch_name
(-b = branch)
git push origin branch_name
local branch 삭제
git branch -d branch_name
현재 branch01에 머무르고 있으므로 삭제가 안됨. 다른 branch 이동 후 삭제 가능
remote branch 삭제
git push origin --delete branch_name