diff options
author | Brandon Casey <drafnel@gmail.com> | 2011-08-26 19:59:25 -0500 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2011-08-27 11:12:13 -0700 |
commit | d88acc91785661ef261ed816c13b70068400d194 (patch) | |
tree | e505e357f6307bd562f1ff44326c487daf56efee /git-stash.sh | |
parent | 4fd731240980f0f4b4565abe9092bd3d08d650e3 (diff) | |
download | git-d88acc91785661ef261ed816c13b70068400d194.tar.gz |
git-stash.sh: fix typo in error message
Signed-off-by: Brandon Casey <drafnel@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'git-stash.sh')
-rwxr-xr-x | git-stash.sh | 2 |
1 files changed, 1 insertions, 1 deletions
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="$*" |