2021-09-17 게시 됨2021-09-17 업데이트 됨git몇 초안에 읽기 (약 49 단어)git branch set upstream toterminal1git branch --set-upstream-to=origin/main main 브랜치 리네임을 했을 때, 원격 레포와 로컬 레포에 매핑이 깨질 수 있다 그럴 때 다시 바로잡아주자
2020-11-18 게시 됨2020-12-02 업데이트 됨git몇 초안에 읽기 (약 65 단어)git branch rename 브랜치명 변경상황 로컬에 있는 퍼블리쉬하지 않은 브랜치 이름 바꾸기 브랜치이름 바꾸기 git branch -m {바꿀 브랜치명} {새로운 브랜치명} 참고 Git Branch 이름 변경하기
2020-10-21 게시 됨2021-08-04 업데이트 됨git몇 초안에 읽기 (약 93 단어)특정 브랜치 클론하기123git 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 https://github.com/chinsun9/2020-web-test.git 저장소의 docker라는 브랜치를 클론하는 명령이다