So, total newbie to Git. Been reading through the guides and think I have the basics but am having difficulties accomplishing this one goal.
I have a repo created fo
This tutorial gives a simple and straightforward answer :
forkedreporepositoryClone it locally:
git clone https://github.com/YOURUSERNAME/forkedrepo.git
Add the original github repository as remote of the new local repository:
git remote add upstream https://github.com/YOURUSERNAME/originalrepo.git
Pull down a copy of the original github repository to your new local repository:
git pull upstream master
Push the files from your new local repository to new github repository:
git push origin master
This won't be recognized by github as a fork of the original repository, off course, but this is as good as it gets.