From: Junio C Hamano Date: Sun, 13 Jan 2008 10:38:46 +0000 (-0800) Subject: builtin-commit.c: remove useless check added by faulty cut and paste X-Git-Tag: v1.5.4-rc4~43 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=16335fdd7ace78a8285ba25fd7a81177a48e7c9b;p=git.git builtin-commit.c: remove useless check added by faulty cut and paste 2888605c649ccd423232161186d72c0e6c458a48 (builtin-commit: fix partial-commit support) mindlessly cut and pasted from builtin-ls-files.c, and included a part that was meant to exclude redundant path after "ls-files --with-tree" overlayed the HEAD commit on top of the index. This logic does not apply to what git-commit does and should not have been copied, even though it would not hurt. Signed-off-by: Junio C Hamano --- diff --git a/builtin-commit.c b/builtin-commit.c index 6d2ca808b..265ba6bcd 100644 --- a/builtin-commit.c +++ b/builtin-commit.c @@ -156,8 +156,6 @@ static int list_paths(struct path_list *list, const char *with_tree, for (i = 0; i < active_nr; i++) { struct cache_entry *ce = active_cache[i]; - if (ce->ce_flags & htons(CE_UPDATE)) - continue; if (!pathspec_match(pattern, m, ce->name, 0)) continue; path_list_insert(ce->name, list);