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>

 

'Study > Git' 카테고리의 다른 글

[Git] SourceTree가 실행이 안될 때  (0) 2023.06.15
[Git] git ignore 사용법  (0) 2023.04.11
Git 디폴트 브랜치 변경하기  (0) 2021.04.29

+ Recent posts