Staging
v0.5.1
https://github.com/git/git
Revision ce33288ea6b81a2f4f5aecd72177bcc8174562ae authored by Junio C Hamano on 21 January 2008, 01:04:53 UTC, committed by Junio C Hamano on 21 January 2008, 01:05:11 UTC
Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent 105c21d
Raw File
Tip revision: ce33288ea6b81a2f4f5aecd72177bcc8174562ae authored by Junio C Hamano on 21 January 2008, 01:04:53 UTC
GIT 1.5.4-rc4
Tip revision: ce33288
log-tree.h
#ifndef LOG_TREE_H
#define LOG_TREE_H

#include "revision.h"

struct log_info {
	struct commit *commit, *parent;
};

void init_log_tree_opt(struct rev_info *);
int log_tree_diff_flush(struct rev_info *);
int log_tree_commit(struct rev_info *, struct commit *);
int log_tree_opt_parse(struct rev_info *, const char **, int);
void show_log(struct rev_info *opt, const char *sep);
void show_decorations(struct commit *commit);

#endif
back to top