diff options
author | Brandon Casey <drafnel@gmail.com> | 2011-08-27 02:59:25 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2011-08-27 20:12:13 +0200 |
commit | d88acc91785661ef261ed816c13b70068400d194 (patch) | |
tree | e505e357f6307bd562f1ff44326c487daf56efee /git-stash.sh | |
parent | t/t3905: use the name 'actual' for test output, swap arguments to test_cmp (diff) | |
download | git-d88acc91785661ef261ed816c13b70068400d194.tar.xz git-d88acc91785661ef261ed816c13b70068400d194.zip |
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="$*" |