aboutsummaryrefslogtreecommitdiff
path: root/cli/README.md
diff options
context:
space:
mode:
authorGravatar Kevin Papst <kevinpapst@users.noreply.github.com> 2017-12-02 13:43:28 +0100
committerGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2017-12-02 13:43:28 +0100
commitb5626391553b57d85cca87869c27ffdbdb9a0b04 (patch)
treecd749bce826f886e7e7e7be2d02e29b177ff0d76 /cli/README.md
parent6c6d9bdfdcfb0155e8adfaaae679512ec819c0f9 (diff)
Documentation updates (#1697)
* added documentation about updating FreshRSS moved Installation to admin directory linked some already existing documentation files
Diffstat (limited to 'cli/README.md')
-rw-r--r--cli/README.md50
1 files changed, 2 insertions, 48 deletions
diff --git a/cli/README.md b/cli/README.md
index 6f907566c..b7e8ac7f5 100644
--- a/cli/README.md
+++ b/cli/README.md
@@ -99,51 +99,5 @@ Example to get the number of feeds of a given user:
# Install and updates
-## Using git
-
-If you manage FreshRSS via command line, then installing and updating FreshRSS can be done via git:
-
-```sh
-# If your local user does not have write access, prefix all commands by sudo:
-sudo ...
-
-# Install FreshRSS
-cd /usr/share/
-git clone https://github.com/FreshRSS/FreshRSS.git
-
-# Perform all commands below in your FreshRSS directory:
-cd /usr/share/FreshRSS
-
-# Use the development version of FreshRSS
-git checkout -b dev origin/dev
-
-# Check out a specific version of FreshRSS
-# See release names on https://github.com/FreshRSS/FreshRSS/releases
-# You will then need to manually change version
-# or checkout master or dev branch to get new versions
-git checkout 1.7.0
-
-# Verify what branch is used
-git branch
-
-# Check whether there is a new version of FreshRSS,
-# assuming you are on the /master or /dev branch
-git fetch --all
-git status
-
-# Discard manual changes (do a backup before)
-git reset --hard
-# Then re-delete the file forcing the setup wizard
-rm data/do-install.txt
-
-# Delete manual additions (do a backup before)
-git clean -f -d
-
-# Update to a newer version of FreshRSS,
-# assuming you are on the /master or /dev branch
-git pull
-
-# Set the rights so that your Web server can access the files
-# (Example for Debian / Ubuntu)
-chown -R :www-data . && chmod -R g+r . && chmod -R g+w ./data/
-```
+If you want to administrate FreshRSS using git, please read our [installation docs](https://freshrss.github.io/FreshRSS/en/admins/02_Installation.html)
+and [update guidelines](https://freshrss.github.io/FreshRSS/en/users/08_Updating.html). \ No newline at end of file