clone
$ git clone --mirror [옮길 Repository 주소]
$ cd [옮길 Repository 이름].git
$ git remote set-url --push origin [신규 Repository 주소]
$ git push --mirror
subtree
$ git clone [신규 Repository 주소]
$ git subtree add --prefix=[원하는 하위 디렉토리 명] [옮길 Repository 주소] [옮길 Repository의 branch]
merge
$ git clone [신규 Repository 주소]
$ git remote add [옮길 Repository 이름] [옮길 Repository 주소]
$ git remote -v
$ git fetch [옮길 Repository 이름] --tags
$ git merge --allow-unrelated-histories [옮길 Repository 이름]/[옮길 Repository의 branch]
