git

create a new repository then duplicate your code from last project to it.

git clone --bare https://github.com/exampleuser/old-repository.git

cd old-repository.git
git push --mirror https://github.com/exampleuser/new-repository.git

cd ..
rm -rf old-repository.git

Source: https://help.github.com/articles/duplicating-a-repository/

Last updated

Was this helpful?