From 5088d30821c2cb23d19eafc9a4a128eb1025aa13 Mon Sep 17 00:00:00 2001 From: Toshiya Kawasaki Date: Wed, 22 Nov 2017 03:13:31 +0900 Subject: [PATCH] Add sample of -u option of git stash (#146) --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index f355243..7afacf2 100644 --- a/README.md +++ b/README.md @@ -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 +``` + ### Stash specific file