summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorFrancesco Borzì <borzifrancesco@gmail.com>2021-01-25 19:56:10 +0100
committerGitHub <noreply@github.com>2021-01-25 19:56:10 +0100
commitb71f9f7d53cebcb926e858d797d1556ae891f7d2 (patch)
treef5c66308ac5d9188a2a9f27ac5cfe77eb59fe16c /docs
parentb80a17d52c84d30872a61594609d87b7b4d76f3c (diff)
downloadwiki-b71f9f7d53cebcb926e858d797d1556ae891f7d2.tar.gz
wiki-b71f9f7d53cebcb926e858d797d1556ae891f7d2.tar.bz2
wiki-b71f9f7d53cebcb926e858d797d1556ae891f7d2.zip
docs: how to update from pre-3.0.0
Diffstat (limited to 'docs')
-rw-r--r--docs/Upgrade-from-pre-3.0.0-to-latest-master.md21
1 files changed, 21 insertions, 0 deletions
diff --git a/docs/Upgrade-from-pre-3.0.0-to-latest-master.md b/docs/Upgrade-from-pre-3.0.0-to-latest-master.md
new file mode 100644
index 0000000..8f93281
--- /dev/null
+++ b/docs/Upgrade-from-pre-3.0.0-to-latest-master.md
@@ -0,0 +1,21 @@
+This is the tutorial to upgrade any existing server from a version prior to the [3.0.0 release](https://github.com/azerothcore/azerothcore-wotlk/releases/tag/v3.0.0) to the latest `master` version.
+
+**Note**: it is always recommended to backup your database before doing ANY update.
+
+### Step 1. Upgrade to last 3.0.0 commit
+
+You need first to update your server to [this commit](https://github.com/azerothcore/azerothcore-wotlk/commit/2d609e9e48b2e516e4a555015b2662cab15b0c38), running:
+
+`git checkout 2d609e9e48b2e516e4a555015b2662cab15b0c38`
+
+Now update your **database** as you usually do (e.g. using the db-assembler)
+
+### Step 2. Upgrade to latest master
+
+Update to latest master:
+
+`git checkout master; git pull;`
+
+**Note**: if you are using your own fork of AC, as usual, you have to [sync it](Syncing-your-fork)
+
+Now update your **core and database** (again) as [you normally do](Update).