summaryrefslogtreecommitdiff
path: root/commit.h
diff options
context:
space:
mode:
authorChristian Couder <chriscool@tuxfamily.org>2009-05-27 05:09:40 (GMT)
committerJunio C Hamano <gitster@pobox.com>2009-05-27 20:45:45 (GMT)
commit7a8e3895f68e9ae4e44e521c78fc98768c2a88ec (patch)
tree3adc4b131c6571c98e549afaa413dd210a706ebd /commit.h
parent2d938fc7bcf2c8ce314c44955db5a4dd2e9b6adb (diff)
downloadgit-7a8e3895f68e9ae4e44e521c78fc98768c2a88ec.zip
git-7a8e3895f68e9ae4e44e521c78fc98768c2a88ec.tar.gz
git-7a8e3895f68e9ae4e44e521c78fc98768c2a88ec.tar.bz2
bisect: drop unparse_commit() and use clear_commit_marks()
The goal of this patch series is to check if good revisions are ancestor of the bad revision without forking a process to launch "git rev-list $good ^$bad". This new version of this patch series does not use an "unparse_commit" function anymore, we use "clear_commit_marks" instead. Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'commit.h')
-rw-r--r--commit.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/commit.h b/commit.h
index f3eaf1d..ba9f638 100644
--- a/commit.h
+++ b/commit.h
@@ -40,8 +40,6 @@ int parse_commit_buffer(struct commit *item, void *buffer, unsigned long size);
int parse_commit(struct commit *item);
-void unparse_commit(struct commit *item);
-
struct commit_list * commit_list_insert(struct commit *item, struct commit_list **list_p);
unsigned commit_list_count(const struct commit_list *l);
struct commit_list * insert_by_date(struct commit *item, struct commit_list **list);