Add sample of -u option of git stash (#146)

This commit is contained in:
Toshiya Kawasaki 2017-11-22 03:13:31 +09:00 committed by Richard Littauer
parent adb5a2d250
commit 5088d30821
1 changed files with 6 additions and 0 deletions

View File

@ -896,6 +896,12 @@ To stash all the edits in your working directory
$ git stash
```
If you also want to stash untracked files, use `-u` option.
```sh
$ git stash -u
```
<a name="stash-specific-file"></a>
### Stash specific file