summaryrefslogtreecommitdiff
path: root/builtin
diff options
context:
space:
mode:
authorLibravatar Conrad Irwin <conrad.irwin@gmail.com>2011-05-06 23:00:00 -0700
committerLibravatar Junio C Hamano <gitster@pobox.com>2011-05-09 17:02:33 -0700
commite41fcfe955cb8080bf8f0e16352d3131d1f01ac8 (patch)
treeef2dc9166a47aab6a31cac04fada687cfbcc4053 /builtin
parentt7501.8: feed a meaningful command (diff)
downloadtgif-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 'builtin')
-rw-r--r--builtin/commit.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/builtin/commit.c b/builtin/commit.c
index 636aea6d62..7707af8844 100644
--- a/builtin/commit.c
+++ b/builtin/commit.c
@@ -1084,8 +1084,6 @@ static int parse_and_validate_options(int argc, const char *argv[],
if (all && argc > 0)
die(_("Paths with -a does not make sense."));
- else if (interactive && argc > 0)
- die(_("Paths with --interactive does not make sense."));
if (null_termination && status_format == STATUS_FORMAT_LONG)
status_format = STATUS_FORMAT_PORCELAIN;