1
0
mirror of https://github.com/k88hudson/git-flight-rules.git synced 2025-03-10 12:48:43 -03:00

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

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