프로젝트 끝난 후 repo를 내 github으로 옮겨오는 방법 (commit log 포함해서)
1. git clone --bare {old_repository_url}
2. cd {old_repository}
3. git push --mirror {new_repository_url}
git clone --mirror를 사용해 옮기면 된다는 내용을 보고 따라서 하던 중 오류 발생! [remote rejected] refs/pull/1/head -> refs/pull/1/head (deny updating a hidden ref)
! [remote rejected] refs/pull/1/merge -> refs/pull/1/merge (deny updating a hidden ref)
git clone --bare를 사용해 해결 !