1
0
mirror of https://github.com/billz/raspap-webgui.git synced 2023-10-10 13:37:24 +02:00

Updated FAQs (markdown)

Bill Zimmerman 2020-04-13 12:14:43 +02:00
parent c8dd44bd97
commit a08fe179d3

10
FAQs.md

@ -50,9 +50,17 @@ latest=$(git describe --tags `git rev-list --tags --max-count=1`)
echo $latest
sudo git checkout $latest
```
Alternatively, install a specific version by referencing a tag:
```
sudo git fetch --tags
sudo git checkout 2.4
```
A tag is a pointer that isn't connected to the main development tree that git knows about. As a result, git will reply that you're in a 'detached HEAD' state. This isn't a big deal, it just means that you have a specific version of the code that isn't connected to the git tree.
Alternatively, if you want the latest _bleeding edge_ commits from the master branch, use the following:
If you want the latest _bleeding edge_ commits from the master branch, use the following:
```
sudo git checkout master