Git2 [Git] Git 특정 Branch Clone 하기 git으로 프로젝트 관리시 브런치의 코드를 받는다면, 기본적으로 가장 상위(master)브런치가 clone 되어 checkout을 통해 브런치를 이동하게 된다. 이 과정을 생략하고, 특정 브런치를 clone 하고자 할 때는 아래 명령어를 이용하자. $ git clone -b $ git clone -b dev https://github.com/keemdx/test.git 2021. 11. 11. [Git] git push error : 'origin' does not appear to be a git repository fatal: 'origin' does not appear to be a git repository fatal: Could not read from remote repository. 위와 같이 origin master로 git push 할 때 오류 발생 시, git remote -v 를 통하여 remote가 정상적으로 연결되어 있는지 확인한다. git remote -v 원격 저장소에 origin/master가 없거나 remote repository 설정이 잘못되어 있다면? 기존 원격 저장소 연결 삭제 git remote remove origin 다시 연결 git remote add origin "연결할 github 주소" 2021. 9. 8. 이전 1 다음