Duplicating a git repo
1git clone --bare https://example.com/repo.git
2cd repo.git
3git push --mirror https://remote-example.com/repo.git
See https://help.github.com/articles/duplicating-a-repository/
1git clone --bare https://example.com/repo.git
2cd repo.git
3git push --mirror https://remote-example.com/repo.git
See https://help.github.com/articles/duplicating-a-repository/