diff options
| author | Francesco Borzì <borzifrancesco@gmail.com> | 2020-12-12 15:52:45 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-12-12 15:52:45 +0100 |
| commit | 848804f843e7b770efac16c53a5d8add17a94cd0 (patch) | |
| tree | c1cf83789ae4ad39a5960089d47055596a9a21e8 /docs/Installation.md | |
| parent | db9d48cc3301db4e7cb377f206c8037b7a268548 (diff) | |
| download | wiki-848804f843e7b770efac16c53a5d8add17a94cd0.tar.gz wiki-848804f843e7b770efac16c53a5d8add17a94cd0.tar.bz2 wiki-848804f843e7b770efac16c53a5d8add17a94cd0.zip | |
doc: improve classic installation (#260)
Diffstat (limited to 'docs/Installation.md')
| -rw-r--r-- | docs/Installation.md | 19 |
1 files changed, 14 insertions, 5 deletions
diff --git a/docs/Installation.md b/docs/Installation.md index 08eea5e..ef05290 100644 --- a/docs/Installation.md +++ b/docs/Installation.md @@ -22,24 +22,33 @@ This page describes how to use [AzerothCore with ArchLinux](arch-linux.md) Make sure your system fits the [Requirements](Requirements.md). +**Note for Windows users**: use **git bash** as terminal to run commands (see Requirements). ### 2) Getting the source files -Choose one of the following method: +Choose **ONE** of the following method, run one of the below `git ...` commands in your terminal. +This will create an `azerothcore-wotlk` directory containing the AC source files. + +A) Clone only the master branch + full history (smaller size - recommended): ``` -1) Clone only the master branch + full history (smaller size - recommended): git clone https://github.com/azerothcore/azerothcore-wotlk.git --branch master --single-branch azerothcore +``` -2) Clone only the master branch + no previous history (smallest size): +B) Clone only the master branch + no previous history (smallest size): + +``` git clone https://github.com/azerothcore/azerothcore-wotlk.git --branch master --single-branch azerothcore --depth 1 +``` + +C) Clone all branches and all history: -3) Clone all branches and all history: +``` git clone https://github.com/azerothcore/azerothcore-wotlk.git azerothcore ``` -Note: If you want to get the full history back, use `git fetch --unshallow` (if you chose option 2). +Note: If you want to get the full history back, use `git fetch --unshallow` (if you chose option B). ### 3) Compiling |
