diff options
Diffstat (limited to 'doc/Download.md')
-rw-r--r-- | doc/Download.md | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/doc/Download.md b/doc/Download.md new file mode 100644 index 00000000..7930f541 --- /dev/null +++ b/doc/Download.md | |||
@@ -0,0 +1,31 @@ | |||
1 | #Download | ||
2 | ## Get Shaarli! | ||
3 | ### Latest stable revision | ||
4 | This revision has been [released](https://github.com/shaarli/Shaarli/releases) and tested.[](.html) | ||
5 | |||
6 | #### Clone with Git (recommended) | ||
7 | ```bash | ||
8 | $ git clone https://github.com/shaarli/Shaarli.git -b stable shaarli | ||
9 | ``` | ||
10 | |||
11 | #### Download as an archive | ||
12 | ```bash | ||
13 | $ wget https://github.com/shaarli/Shaarli/archive/stable.zip | ||
14 | $ unzip stable.zip | ||
15 | $ mv Shaarli-stable shaarli | ||
16 | ``` | ||
17 | |||
18 | Tarballs are also available: | ||
19 | ```bash | ||
20 | $ wget https://github.com/shaarli/Shaarli/archive/stable.tar.gz | ||
21 | $ tar xvf stable.tar.gz | ||
22 | $ mv Shaarli-stable shaarli | ||
23 | ``` | ||
24 | |||
25 | ### Development (mainline) | ||
26 | _Use at your own risk!_ | ||
27 | |||
28 | To get the latest changes: | ||
29 | ```bash | ||
30 | $ git clone https://github.com/shaarli/Shaarli.git shaarli | ||
31 | ``` | ||