]> git.ipfire.org Git - thirdparty/git.git/blame - reflog-walk.h
Add script for importing bits-and-pieces to Git.
[thirdparty/git.git] / reflog-walk.h
CommitLineData
8860fd42
JS
1#ifndef REFLOG_WALK_H
2#define REFLOG_WALK_H
3
cd437120
JK
4#include "cache.h"
5
8860fd42 6extern void init_reflog_walk(struct reflog_walk_info** info);
7b69b873 7extern int add_reflog_for_walk(struct reflog_walk_info *info,
8860fd42
JS
8 struct commit *commit, const char *name);
9extern void fake_reflog_parent(struct reflog_walk_info *info,
10 struct commit *commit);
cd437120
JK
11extern void show_reflog_message(struct reflog_walk_info *info, int,
12 enum date_mode);
8860fd42
JS
13
14#endif