|
|
@@ -49,18 +49,18 @@ If your local user doesn’t have write access to the FreshRSS folder, use a sud
|
|
|
4. Update FreshRSS
|
|
|
```sh
|
|
|
git checkout edge
|
|
|
- git pull
|
|
|
- git checkout $(git describe --tags --abbrev=0)
|
|
|
+ git pull --ff-only
|
|
|
```
|
|
|
|
|
|
- Note: If you want to use the rolling release, the last command is optional.
|
|
|
+ > ℹ️ Use `edge` for the rolling release or `latest` for the latest stable release.
|
|
|
|
|
|
5. (optional) Make sure you use the correct version
|
|
|
```sh
|
|
|
git status
|
|
|
```
|
|
|
|
|
|
- The command should tell you the tag that you’re using. It must be the same as the one associated with [the latest release on GitHub](https://github.com/FreshRSS/FreshRSS/releases/latest). If you use the rolling release, it should tell you that your `edge` branch is up to date with `origin`.
|
|
|
+ The command should tell you the branch that you’re using. It must be the same as the one associated with [the latest release on GitHub](https://github.com/FreshRSS/FreshRSS/releases/latest).
|
|
|
+ If you use the rolling release, it should tell you that your `edge` branch is up to date with `origin`.
|
|
|
|
|
|
6. Re-set correct permissions so that your web server can access the files
|
|
|
```sh
|