From d88acc91785661ef261ed816c13b70068400d194 Mon Sep 17 00:00:00 2001 From: Brandon Casey Date: Fri, 26 Aug 2011 19:59:25 -0500 Subject: [PATCH] git-stash.sh: fix typo in error message Signed-off-by: Brandon Casey Signed-off-by: Junio C Hamano --- git-stash.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/git-stash.sh b/git-stash.sh index 7ffab6f26f..0d167fcdf6 100755 --- a/git-stash.sh +++ b/git-stash.sh @@ -199,7 +199,7 @@ save_stash () { if test -n "$patch_mode" && test -n "$untracked" then - die "Can't use --patch and ---include-untracked or --all at the same time" + die "Can't use --patch and --include-untracked or --all at the same time" fi stash_msg="$*" -- 2.11.4.GIT