티스토리 뷰

1. 기존 repository를 복제하여 새로운 repository를 만든다.

https://projooni.tistory.com/entry/%EA%B8%B0%EC%A1%B4-Git-Repository%EB%A5%BC-%EB%B3%B5%EC%82%AC%ED%95%98%EC%97%AC-%EC%83%88%EB%A1%9C%EC%9A%B4-Repository-%EB%A7%8C%EB%93%A4%EA%B8%B0

 

기존 Git Repository를 복사하여 새로운 Repository 만들기

보통 Git Repository를 복사할 때 fork 를 많이 사용한다. fork 는 사실상 clone 과 큰 차이가 없지만, github.com 내에서 바로 검색이 되진 않는다. fork 의 원래 의도는 bugfix를 위해 기존 repository를 복사하..

projooni.tistory.com

git clone --mirror {old_repository_url}

 

cd {old_repository_folder}.git

git remote set-url --push origin {new_repository_url}

git push --mirror

 

 

2. 새로운 repository를 clone하여 일반적인 방식으로 사용한다.

 

git clone {new_repository_url}

 

git remote add {name_you_want} {new_repository_url}

     e.g.  git remote add origin https://github.com/usrname/repositoryname.git

 

 

'git' 카테고리의 다른 글

linux 특정 폴더에서 git 사용하기  (0) 2022.09.30
최근에 올라온 글
최근에 달린 댓글
Total
Today
Yesterday
링크
«   2025/01   »
1 2 3 4
5 6 7 8 9 10 11
12 13 14 15 16 17 18
19 20 21 22 23 24 25
26 27 28 29 30 31
글 보관함