Jump to content
Aeromesi

Weird problem / question

Recommended Posts

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.

Share this post


Link to post
Share on other sites

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)

Share this post


Link to post
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...

×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.