log-tree.hon commit Fix clone not to ignore depth when performing a local clone (d4110a9)
   1#ifndef LOG_TREE_H
   2#define LOG_TREE_H
   3
   4#include "revision.h"
   5
   6struct log_info {
   7        struct commit *commit, *parent;
   8};
   9
  10void init_log_tree_opt(struct rev_info *);
  11int log_tree_diff_flush(struct rev_info *);
  12int log_tree_commit(struct rev_info *, struct commit *);
  13int log_tree_opt_parse(struct rev_info *, const char **, int);
  14void show_log(struct rev_info *opt, const char *sep);
  15void show_decorations(struct commit *commit);
  16
  17#endif