본문 바로가기

프로그래밍 공부/Git & Terminal

[Git-hub] 깃헙 branch 생성 , 클론(clone), 푸시(push),풀(pull)하기

반응형

 

안녕하세요~ 27년차 진로탐색꾼 조녁입니다!!

오늘은 정말 간단하지만 자주 안쓰면 자꾸 사소하게 까먹어서 기록 남겨놓으려고 합니다! (a.k.a 미세먼지 팁)

 

 

 

1. git

- Make a git branch

#check my branch
git branch 

#make a branch
# * You can't create branch in places where there's no commit
git branch [branch name]

 

- Clone a specific branch from git-hub

git clone -b {branch_name} --single-branch {저장소 URL}
ex) git clone -b LJH --single-branch https://github.com/jonhyuk0922/~~

 

- Pull or Push a specific branch to git-hub

#pull a specific branch
git pull origin [branch name]

#push a specific branch 
git push origin [branch name]

 

참고자료

깃 입문 자료 : https://backlog.com/git-tutorial/kr/stepup/stepup2_2.html

특정 브런치 클론 : https://www.slipp.net/questions/577

반응형