Aeromesi 180 Posted July 27, 2015 So I was doing pull updates from hercules on my server then decided to make my own github and apply updates through that, I lost the original server with the github info for hercules and was wondering if there was a way to establish viewing all modifications made from my Hercules git repo on the Official Hercules git repo. So I make sure I don't miss anything while making all my modifications on a new uptodate Revision of hercules. Quote Share this post Link to post Share on other sites
Aeromesi 180 Posted July 30, 2015 Anyone shed some light on this for me? Quote Share this post Link to post Share on other sites
Dastgir 1246 Posted July 30, 2015 So you have your own github but lost the updates from Hercules one.you can do following: Do One Time: git remote add upstream https://github.com/HerculesWS/Hercules.git Above will add a new remote named as upstream. git fetch upstream Above will fetch all commits from upstream(Hercules repo) , You need to do it everytime you need to update. git checkout master Checkout to your Master branch. git merge upstream/master master Merge the Hercules repo 'master' branch with your git 'master' branch.(I hope I didn't misunderstood your question xD) Quote Share this post Link to post Share on other sites