Add comments to update

master
andryyy 2017-03-05 13:51:56 +01:00
parent 2bbbb13b0e
commit 252150016f
1 changed files with 3 additions and 0 deletions

View File

@ -41,8 +41,11 @@ There is no update routine. You need to refresh your pulled repository clone and
stash all local changes, pull changes from the remote master branch and apply your stash on top of it:
```
# Stash local changes
git stash
# Re-pull master
git pull
# Apply stash and remove it
git stash pop
```