xxxxxxxxxx
// cloning project with commit history
$ git clone --bare https://github.com/your-assignment-project.git
$ cd your-assignment-project.git
// pushing clone to new repository (make one first)
$ git push --mirror https://github.com/your-personal-repo.git
// setup new remote origins to new repository url
$ git remote set-url origin https://github.com/your-personal-repo.git
$ git remote -v