From 302cb7ee2606e5fe6b769726639620e4149e6cab Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Francesco=20Borz=C3=AC?= Date: Sun, 14 Nov 2021 20:59:29 +0100 Subject: [PATCH] docs(README): add Eluna update procedure (#68) --- README.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/README.md b/README.md index 89b5c91..733d7e8 100644 --- a/README.md +++ b/README.md @@ -37,3 +37,18 @@ You need to run the cmake again and and rebuild the project. Eluna API : [http://elunaluaengine.github.io/](http://elunaluaengine.github.io/) + +## How to update the Eluna version (for project mainteners) + +1) `cd` into `mod-eluna-lua-engine` +2) `git checkout master` +3) cd `LuaEngine` +4) `git checkout master` +5) `git pull` +6) `cd ..` so you get back to `mod-eluna-lua-engine` +7) `git checkout -b some-new-unique-branch-name` +8) `git add LuaEngine` +9) `git commit -m "feat: update Eluna version"` +10) `git push` +11) The terminal will tell you something like `fatal: The current branch some-new-unique-branch-name has no upstream branch.` and suggest the command to use, for example: `git push --set-upstream origin some-new-unique-branch-name` +12) Open [the repo on Github](https://github.com/azerothcore/mod-eluna-lua-engine) and create a new PR