Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2009-10-15 03:13:20 +0400
committerJunio C Hamano <gitster@pobox.com>2009-10-15 03:13:20 +0400
commitc274db7057318835e975c26284f6f9d723b938f3 (patch)
tree61e82973be37e948b46be27a101e0498938a585a /git-add--interactive.perl
parent695f9523ddfa0a2b8325507b4f077b073d8f438f (diff)
parentb145b211baa4129a827cc1b1b1a7984523b8f903 (diff)
Merge branch 'pv/maint-add-p-no-exclude'
* pv/maint-add-p-no-exclude: git-add--interactive: never skip files included in index
Diffstat (limited to 'git-add--interactive.perl')
-rwxr-xr-xgit-add--interactive.perl2
1 files changed, 1 insertions, 1 deletions
diff --git a/git-add--interactive.perl b/git-add--interactive.perl
index 392efb913f..69aeaf03ec 100755
--- a/git-add--interactive.perl
+++ b/git-add--interactive.perl
@@ -259,7 +259,7 @@ sub list_modified {
@tracked = map {
chomp $_;
unquote_path($_);
- } run_cmd_pipe(qw(git ls-files --exclude-standard --), @ARGV);
+ } run_cmd_pipe(qw(git ls-files --), @ARGV);
return if (!@tracked);
}