Weird problem / question

Aeromesi

Custom Instance Maniac
Messages
821
Points
0
Age
33
Location
Custom Instances
Discord
Aeromesi#0293
Github
http://www.github.com/aeromesi
Emulator
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.

 
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)

 
Back
Top