summaryrefslogtreecommitdiff
path: root/builtin-commit.c
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2008-12-03 00:38:12 -0800
committerJunio C Hamano <gitster@pobox.com>2008-12-03 00:38:12 -0800
commitae26e7c74970281bd3597c79e44a8b54a927bbe1 (patch)
treeab91c9e9de975fd469f81795a5f53026050b2b71 /builtin-commit.c
parent6dbcb59e8271c16cbec486932bd3069279e09c60 (diff)
parent331fcb598ec0127fd89c992361bc573dcd3a4a63 (diff)
downloadgit-ae26e7c74970281bd3597c79e44a8b54a927bbe1.tar.gz
Merge branch 'jc/rm-i-t-a'
* jc/rm-i-t-a: git add --intent-to-add: do not let an empty blob be committed by accident git add --intent-to-add: fix removal of cached emptiness builtin-rm.c: explain and clarify the "local change" logic Extend index to save more flags
Diffstat (limited to 'builtin-commit.c')
-rw-r--r--builtin-commit.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin-commit.c b/builtin-commit.c
index 1677e6b45f..2b499fa543 100644
--- a/builtin-commit.c
+++ b/builtin-commit.c
@@ -639,7 +639,7 @@ static int prepare_to_commit(const char *index_file, const char *prefix)
active_cache_tree = cache_tree();
if (cache_tree_update(active_cache_tree,
active_cache, active_nr, 0, 0) < 0) {
- error("Error building trees; the index is unmerged?");
+ error("Error building trees");
return 0;
}