diff options
| author | Junio C Hamano <gitster@pobox.com> | 2009-10-25 15:34:27 -0700 | 
|---|---|---|
| committer | Junio C Hamano <gitster@pobox.com> | 2009-10-25 15:34:27 -0700 | 
| commit | caa7dac163f7f7fc827da6fd4a5aba259a50e1ab (patch) | |
| tree | a64ab3cffd7aea248fe824732a270c76c3ba2612 /builtin-ls-files.c | |
| parent | 1c92a08f286453bd28a1f6153249b2e2cf63cb38 (diff) | |
| parent | b5227d80aee5173bfda6aa43a890d03110b0df26 (diff) | |
Merge branch 'jk/maint-1.6.3-ls-files-no-ignore-cached' into maint-1.6.4
* jk/maint-1.6.3-ls-files-no-ignore-cached:
  ls-files: excludes should not impact tracked files
Diffstat (limited to 'builtin-ls-files.c')
| -rw-r--r-- | builtin-ls-files.c | 8 | 
1 files changed, 0 insertions, 8 deletions
| diff --git a/builtin-ls-files.c b/builtin-ls-files.c index 2c95ca6105..c5c0407b0b 100644 --- a/builtin-ls-files.c +++ b/builtin-ls-files.c @@ -170,10 +170,6 @@ static void show_files(struct dir_struct *dir, const char *prefix)  	if (show_cached | show_stage) {  		for (i = 0; i < active_nr; i++) {  			struct cache_entry *ce = active_cache[i]; -			int dtype = ce_to_dtype(ce); -			if (excluded(dir, ce->name, &dtype) != -					!!(dir->flags & DIR_SHOW_IGNORED)) -				continue;  			if (show_unmerged && !ce_stage(ce))  				continue;  			if (ce->ce_flags & CE_UPDATE) @@ -186,10 +182,6 @@ static void show_files(struct dir_struct *dir, const char *prefix)  			struct cache_entry *ce = active_cache[i];  			struct stat st;  			int err; -			int dtype = ce_to_dtype(ce); -			if (excluded(dir, ce->name, &dtype) != -					!!(dir->flags & DIR_SHOW_IGNORED)) -				continue;  			if (ce->ce_flags & CE_UPDATE)  				continue;  			err = lstat(ce->name, &st); | 
