kerbiii 5 Posted November 26, 2013 1. How to know my hercules revision 2. How to update using git but keeping the changes i made 3. how to merge the changes i made and the update in git pull? Quote Share this post Link to post Share on other sites
0 Mumbles 193 Posted November 26, 2013 If your server's live and running, type @version in-game to retrieve the GIT hash. Alternatively, you can check it from a command line, like this: git rev-parse HEAD If you want the short version of the hash, type this instead: git rev-parse --short HEAD Assuming you're still using the command line to operate git, you can merge new updates with this command: git pull --commit To stay updated with ease, simply just make changes for your server within the same working copy that you use for GIT. Concurrent changes are handled fairly well, so unless you've made mass updates, you should be fine. I recommend that you make backups if you're unsure of whether or not updating will conflict with your customisations. 2 kerbiii and Zephy reacted to this Quote Share this post Link to post Share on other sites
0 kerbiii 5 Posted November 27, 2013 If your server's live and running, type @version in-game to retrieve the GIT hash. Alternatively, you can check it from a command line, like this: git rev-parse HEAD If you want the short version of the hash, type this instead: git rev-parse --short HEAD Assuming you're still using the command line to operate git, you can merge new updates with this command: git pull --commit To stay updated with ease, simply just make changes for your server within the same working copy that you use for GIT. Concurrent changes are handled fairly well, so unless you've made mass updates, you should be fine. I recommend that you make backups if you're unsure of whether or not updating will conflict with your customisations. thanks meaning: git pull --commit will update my rev at the sametime will keep all my changes? Quote Share this post Link to post Share on other sites
0 Mumbles 193 Posted November 27, 2013 thanks meaning: git pull --commit will update my rev at the sametime will keep all my changes? As long as you don't have anything that conflicts with the update, you'll be fine in most cases. In the event that you do have conflicts, a manual update may be needed. Your own changes won't be discarded unless you confirm that's what you want to do. Quote Share this post Link to post Share on other sites
1. How to know my hercules revision
2. How to update using git but keeping the changes i made
3. how to merge the changes i made and the update in git pull?
Share this post
Link to post
Share on other sites