협업을 할 때 사용한 공동의 repo를 자신의 repo로 가져올 때 기존의 commit을 유지하며 fork 해오는 법
$ git clone --bare [origin_repository 주소]
$ cd origin_repository.git $ git push --mirror [new_repository 주소]
$ cd .. $ rm -rf origin_repository.git