git branch set upstream to

terminal
1
git branch --set-upstream-to=origin/main main
  • 브랜치 리네임을 했을 때, 원격 레포와 로컬 레포에 매핑이 깨질 수 있다
  • 그럴 때 다시 바로잡아주자

특정 브랜치 클론하기

1
2
3
git clone -b {브랜치명} --single-branch {저장소}

git clone -b docker --single-branch https://github.com/chinsun9/2020-web-test.git
  • 저장소에 여러 브랜치가 있는데, 특정 하나의 브랜치만 클론하고 싶을때!

git clone -b docker –single-branch https://github.com/chinsun9/2020-web-test.git