[Github] Repository fork

happy_quokka·2023년 11월 19일
0

Git

목록 보기
3/4

협업을 할 때 사용한 공동의 repo를 자신의 repo로 가져올 때 기존의 commit을 유지하며 fork 해오는 법

1. 내 github에 새로운 repository 만들기

  • repo 이름 : new_repository

2. terminal 열기

  • fork 해오고 싶은 repository(origin_repository) bare clone 해오기
$ git clone --bare [origin_repository 주소]

3. 새로운 repository(new_repository)로 mirror push 진행하기

$ cd origin_repository.git
$ git push --mirror [new_repository 주소]

4. clone 해온 local origin_repository 삭제하기

$ cd ..
$ rm -rf origin_repository.git

0개의 댓글