https://github.com/git/git
Revision 3cb567386d5d0349bfb5e3aaf85e973faf685dda authored by Johannes Schindelin on 03 July 2007, 15:01:06 UTC, committed by Junio C Hamano on 03 July 2007, 20:44:30 UTC
Without this patch, an added file would be reported as /dev/null.

Noticed by David Kastrup.

Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent 9cb18f5
Raw File
Tip revision: 3cb567386d5d0349bfb5e3aaf85e973faf685dda authored by Johannes Schindelin on 03 July 2007, 15:01:06 UTC
diff --no-index: fix --name-status with added files
Tip revision: 3cb5673
reflog-walk.h
#ifndef REFLOG_WALK_H
#define REFLOG_WALK_H

extern void init_reflog_walk(struct reflog_walk_info** info);
extern void 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