aboutsummaryrefslogtreecommitdiff
path: root/t/t7501-commit.sh
diff options
context:
space:
mode:
authorConrad Irwin <conrad.irwin@gmail.com>2011-05-06 23:00:00 -0700
committerJunio C Hamano <gitster@pobox.com>2011-05-09 17:02:33 -0700
commite41fcfe955cb8080bf8f0e16352d3131d1f01ac8 (patch)
treeef2dc9166a47aab6a31cac04fada687cfbcc4053 /t/t7501-commit.sh
parent587ac8c9d4b4a9e054dddb4779f6206fde5950ef (diff)
downloadgit-e41fcfe955cb8080bf8f0e16352d3131d1f01ac8.tar.gz
git-e41fcfe955cb8080bf8f0e16352d3131d1f01ac8.tar.xz
Allow git commit --interactive with paths
Make git commit --interactive feel more like git add --interactive by allowing the user to restrict the list of files they have to deal with. A test in t7501 used to ensure that this is not allowed; no need for that anymore. Signed-off-by: Conrad Irwin <conrad.irwin@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/t7501-commit.sh')
-rwxr-xr-xt/t7501-commit.sh5
1 files changed, 3 insertions, 2 deletions
diff --git a/t/t7501-commit.sh b/t/t7501-commit.sh
index 3d2b14d30..c2fd116d6 100755
--- a/t/t7501-commit.sh
+++ b/t/t7501-commit.sh
@@ -41,11 +41,12 @@ test_expect_success \
"echo King of the bongo >file &&
test_must_fail git commit -m foo -a file"
-test_expect_success PERL 'cannot use paths with --interactive' '
+test_expect_success PERL 'can use paths with --interactive' '
echo bong-o-bong >file &&
# 2: update, 1:st path, that is all, 7: quit
( echo 2; echo 1; echo; echo 7 ) |
- test_must_fail git commit -m foo --interactive file
+ git commit -m foo --interactive file &&
+ git reset --hard HEAD^
'
test_expect_success \