Study/Git

Git 저장소 복제하기

성으니:) 2021. 4. 29. 23:21

git repository의 모든 branch와 commit들, README까지 복제해오는 방법이다. 

복제하기 전 new_repository는 미리 생성해둬야 한다. 

 

$ git clone <org_repository>
$ cd org_repository
$ git remote -v
$ git remote set-url --push origin <new_repository>
$ git remote -v
$ git push --mirror <new_repository>