diff options
author | Junio C Hamano <junkio@cox.net> | 2007-01-20 00:51:41 -0800 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2007-01-20 21:32:31 -0800 |
commit | 4d12a471230625da73be464f5a20b7480a6b8ecb (patch) | |
tree | 1a9a11d53059bdae1d114b5ca1b2747a767b06a1 /reflog-walk.h | |
parent | 53645a3a62977d5efd96ca9f3654985802212a9d (diff) | |
download | git-4d12a471230625da73be464f5a20b7480a6b8ecb.tar.gz git-4d12a471230625da73be464f5a20b7480a6b8ecb.tar.xz |
Fix --walk-reflog with --pretty=oneline
Now, "git log --abbrev-commit --pretty=o --walk-reflogs HEAD" is
reasonably pleasant to use.
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'reflog-walk.h')
-rw-r--r-- | reflog-walk.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/reflog-walk.h b/reflog-walk.h index 787996b37..e63d86778 100644 --- a/reflog-walk.h +++ b/reflog-walk.h @@ -6,6 +6,6 @@ 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); +extern void show_reflog_message(struct reflog_walk_info *info, int); #endif |