Page 1 of 1

[SOLVED] GIT: Forks and updates

Posted: Wed Jan 20, 2016 10:21 pm
by Octal450
So here is my problem:

I update the MD-88 to my personel repo.

http://www.github.com/it0uchpods/MD-88

There is also my MD-88 forked into FGMEMBERS NON-GPL.

http://www.github.com/FGMEMBERS-NONGPL/MD-88

I have updated to my personel repo, how do I put that update into FGMEMBERS? I did not clone it, as I created the repo, so I originally pushed to /it0uchpods/MD-88

How do I merge that intop FGMEMBERS NON-GPL?

Re: GIT: Forks and updates

Posted: Thu Jan 21, 2016 1:42 am
by IAHM-COL
you can send a Pull Request, and merge.
(thats the web-based-way)

You can push your new commits to the repository directly; without needing to do a PR

from your repo

Code: Select all

git push git@github.com:FGMEMBERS-NONGPL/MD-88.git master


That's the command line way

It does not matter what is a fork from who. In git, all forks are copies/clones, and there is no special priviledges on any of them. The only thing differs is write/push permissions

Re: GIT: Forks and updates

Posted: Thu Jan 21, 2016 6:51 pm
by Octal450
OK rojer thank you.