How do you fork your own repository on GitHub?
I don’t think you can fork your own repo. Clone it and push it to a new repo is good but you need to: git clone https://github.com/userName/Repo New_Repo cd New_Repo git remote set-url origin https://github.com/userName/New_Repo git remote add upstream https://github.com/userName/Repo git push origin master git push –all (see git push) See the all process described … Read more