Revision baee1e91ed41cd369ca3ddd63615b64feaa0286f authored by Brian Gernhardt on 09 January 2007, 05:27:33 UTC, committed by Junio C Hamano on 09 January 2007, 05:53:23 UTC
These new commands weren't added to .gitignore.  Add them so we don't
end up with copies of them in the repo.

Signed-off-by: Brian Gernhardt <benji@silverinsanity.com>
Signed-off-by: Junio C Hamano <junkio@cox.net>
1 parent 3f43d72
Raw File
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);

#endif
back to top