반응형
Notice
Recent Posts
Recent Comments
Link
관리 메뉴

bro's coding

github.branch.주고받기 본문

[IT]/git

github.branch.주고받기

givemebro 2020. 9. 7. 01:00
반응형

branch 주기

$ git push origin <branch name>

 

 


branch 받기

$ git fetch

github의 update 내역을 받아옴

// only local branch
$ git branch

// all branch
$ git branch -a

$ git checkout -b <local에 만들 branch> <원격/가지고올 branch>

$ git branch

반응형

'[IT] > git' 카테고리의 다른 글

github.push -d.원격 branch 제거  (0) 2020.09.07
git.checkout -b  (0) 2020.09.07
github.fetch.pull.작업 주고받기  (0) 2020.09.07
git.pro git  (0) 2020.09.07
github.sourcetree.소스 내려받기  (0) 2020.09.07
github.clone.소스 내려받기  (0) 2020.09.07
github..gitignore  (0) 2020.09.06
github.git.push  (0) 2020.09.06
Comments