summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: fa9dcf8)
raw | patch | inline | side by side (parent: fa9dcf8)
author | Junio C Hamano <gitster@pobox.com> | |
Sun, 13 Jan 2008 10:38:46 +0000 (02:38 -0800) | ||
committer | Junio C Hamano <gitster@pobox.com> | |
Sun, 13 Jan 2008 23:20:31 +0000 (15:20 -0800) |
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 <gitster@pobox.com>
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 <gitster@pobox.com>
builtin-commit.c | patch | blob | history |
diff --git a/builtin-commit.c b/builtin-commit.c
index 6d2ca808b55136b60e65994e8929c3a068b425d6..265ba6bcd4586f11efc17d17b9ee4520edd04060 100644 (file)
--- a/builtin-commit.c
+++ b/builtin-commit.c
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);