Skip to content

Git Repository를 Fork 하는 방법

안지환 edited this page Jan 15, 2024 · 1 revision

🌧️ Git Repository를 Fork 하는 방법

Git Repository를 Fork 하기

원격 저장소를 복제를 합니다.

  1. Git Repository에 Fork 버튼을 클릭합니다. five-lines-study-fork

  2. Owner는 개인 계정으로 선택 한 다음 Create Fork 버튼을 클릭합니다. Five-lines-Create-fork

Local Repository로 복제하기

  1. 해당 프로젝트 원격 저장소를 로컬 저장소로 클론을 받습니다. Five-Lines-Study-clone

  2. 복제 된 프로젝트를 로컬 저장소에 다운로드 받습니다.

git clone https://github.com/<github 계정>/Five-Lines-Study.git
cd Five-Lines-Study # 해당 폴더로 이동
  1. 원격 저장소와 로컬 저장소 연결 여부를 확인합니다.
git remote -v

origin  https://github.com/<github 계정>/Five-Lines-Study.git (fetch)
origin  https://github.com/<github 계정>/Five-Lines-Study.git (push)
  1. 원격 저장소를 연결합니다.
git remote add upstream https://github.com/<원격 저장소>/Five-Lines-Study.git
  1. 원격 저장소와 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) # 원격 저장소