소스 검색

Add comments to update

andryyy 8 년 전
부모
커밋
252150016f
1개의 변경된 파일3개의 추가작업 그리고 0개의 파일을 삭제
  1. 3 0
      docs/install.md

+ 3 - 0
docs/install.md

@@ -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
 ```