Quantcast
Channel: How can I Resync a fork from original - Super User
Browsing all 4 articles
Browse latest View live

Answer by Brian for How can I Resync a fork from original

I found this answer to complement the original answer as that only deals with syncing one branch (master). In addition, if the branch has been created on the upstream since your fork, it is a little...

View Article



Answer by Mechanical snail for How can I Resync a fork from original

By design, forking a project creates a separate repo that is not updated when the original repo changes. However, git makes it pretty easy to update manually.You need the help of a 3rd repository (your...

View Article

Answer by VonC for How can I Resync a fork from original

You need to add a remote (see GitHub help) and pull from that new remote.git remote add mainProject https://github.com/user/mainProjectgit pull mainProject master

View Article

How can I Resync a fork from original

I just forked a project in Github. I made modifications and sent a pull request. The owner merged my fork with the main project and after that he made some modifications. So for now my fork is not...

View Article
Browsing all 4 articles
Browse latest View live




Latest Images