-
Notifications
You must be signed in to change notification settings - Fork 0
Git Repository를 Fork 하는 방법
안지환 edited this page Jan 15, 2024
·
1 revision
원격 저장소를 복제를 합니다.
-
Git Repository에 Fork 버튼을 클릭합니다.
-
Owner는 개인 계정으로 선택 한 다음
Create Fork
버튼을 클릭합니다.
-
해당 프로젝트 원격 저장소를 로컬 저장소로 클론을 받습니다.
-
복제 된 프로젝트를 로컬 저장소에 다운로드 받습니다.
git clone https://github.com/<github 계정>/Five-Lines-Study.git
cd Five-Lines-Study # 해당 폴더로 이동
- 원격 저장소와 로컬 저장소 연결 여부를 확인합니다.
git remote -v
origin https://github.com/<github 계정>/Five-Lines-Study.git (fetch)
origin https://github.com/<github 계정>/Five-Lines-Study.git (push)
- 원격 저장소를 연결합니다.
git remote add upstream https://github.com/<원격 저장소>/Five-Lines-Study.git
- 원격 저장소와 fork 된 저장소가 연결 되어 있는지 확인합니다.
git remote -v
origin https://github.com/<github 계정>/Five-Lines-Study.git (fetch) # fork 된 저장소
origin https://github.com/<github 계정>/Five-Lines-Study.git (push) # fork 된 저장소
upstream https://github.com/<원격 저장소>/Five-Lines-Study.git (fetch) # 원격 저장소
upstream https://github.com/<원격 저장소>/Five-Lines-Study.git (push) # 원격 저장소