I've been trying to learn how to use GitHub but I just can't get a grasp on it.
One thing I want to do is, make a private fork from a public repo. For some reason the button to make a fork private is gone so now I have to 'duplicate' it.
Read some stuff hear and there and ended up using
git remote add upstream
git fetch upstream
git rebase upstream/master
Commands were succesful, but I didn't notice a change, my duplicate didn't add the latest commits from the public repo.
I'm a little frustrated. I find GitHub incredibly hard to get grasp on.
I hope someone can ELI5 how I can update a duplicate of a repo, to the latest version of that repo. And explain it in detail so I learn what's it all about. I've been unsuccesful googling this.