Git 기본 작업 가이드
원격 저장소의 특정 브랜치를 로컬로 가져오기 (로컬에 없는 브랜치)
git checkout -b localBranchName origin/remoteBranchName
만약 오류 메시지가 나타난다면:
fatal: Cannot update paths and switch to branch 'newBranch' at the same time.
Did you intend to checkout 'origin/newBranch' which can not be resolved as commit?
먼저 다음 명령어를 실행해야 ...
6월 24일 04:19에 게시됨