Add comments to update
This commit is contained in:
		@@ -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 all local changes, pull changes from the remote master branch and apply your stash on top of it:
 | 
				
			||||||
 | 
					
 | 
				
			||||||
```
 | 
					```
 | 
				
			||||||
 | 
					# Stash local changes
 | 
				
			||||||
git stash
 | 
					git stash
 | 
				
			||||||
 | 
					# Re-pull master
 | 
				
			||||||
git pull
 | 
					git pull
 | 
				
			||||||
 | 
					# Apply stash and remove it
 | 
				
			||||||
git stash pop
 | 
					git stash pop
 | 
				
			||||||
```
 | 
					```
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user