Mi Lugarcito
GIT - 특정 branch pull & push 본문
git checkout -b 브런치이름
//firt do commit -> do pull -> do push
git add . or git add --all
git commit -m "message"
git pull origin "branch name"
git push origin "branch name"
//git pull
git pull origin <branch 이름>
//git branch 생성 후 특정 branch로 push 하기
git init
git remote add origin https://github.com/~.git
git pull origin 브런치이름
git checkout -b 브런치이름
git add .
git commit -m "어쩌구"
git push origin 브런치이름
https://velog.io/@clubmed2/Git-branch%EC%83%9D%EC%84%B1-%ED%9B%84-push%ED%95%98%EA%B8%B0
https://info-lab.tistory.com/118
'GIT' 카테고리의 다른 글
Git - 협업하기 (0) | 2022.03.24 |
---|---|
Git - .gitignore에 추가해도 git에서 변화를 계속 감지하고 트래킹 할 때 (0) | 2022.02.04 |
GIT - git pull 에러 발생 // Please commit your changes or stash them before you merge. (0) | 2021.10.20 |
GIT - 깃 연동 해지하기 (0) | 2021.10.15 |
Mac) 2021년 8월 13일 부로 GitHub.com에서 Git 작업을 인증 할 때 더 이상 계정 암호를 허용하지 않으며, token-based authentication이 필요 (0) | 2021.08.16 |