Git hub is not updating even if i commited well...

InFiNiTe

New member
Messages
40
Points
0
Emulator
Hello, i was trying to update my server, I saw there are few updates in hercules's git, so when i did git pull, it updated something but when i checked the changes there was nothing :/ so, my question is... how to update even if i commited my changes?

i'm on CentOS

 
Last edited by a moderator:
if your upstream remote is named "origin" (most likely if you didn't rename it) you can do git fetch origin, followed by git rebase origin/stable

this should grab the latest stable revision and re-apply your commits on top

you might want to check the git documentation on git-scm.com

Keep in mind that there hasn't been any commits in stable for 24 days, so if you want the very latest revision you should use origin/master instead of origin/stable. The next release is coming to stable on July 1

 
Last edited by a moderator:
Back
Top