Staging
v0.5.1
https://github.com/git/git
Revision 4c75136f7697f76b31641db775163f5c75906ee2 authored by Junio C Hamano on 03 October 2007, 09:33:11 UTC, committed by Junio C Hamano on 03 October 2007, 09:33:48 UTC
Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent 54e1abc
Raw File
Tip revision: 4c75136f7697f76b31641db775163f5c75906ee2 authored by Junio C Hamano on 03 October 2007, 09:33:11 UTC
GIT 1.5.3.4
Tip revision: 4c75136
reflog-walk.h
#ifndef REFLOG_WALK_H
#define REFLOG_WALK_H

extern void init_reflog_walk(struct reflog_walk_info** info);
extern int add_reflog_for_walk(struct reflog_walk_info *info,
		struct commit *commit, const char *name);
extern void fake_reflog_parent(struct reflog_walk_info *info,
		struct commit *commit);
extern void show_reflog_message(struct reflog_walk_info *info, int, int);

#endif
back to top