diff options
author | Johannes Schindelin <Johannes.Schindelin@gmx.de> | 2007-02-08 21:58:33 +0100 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2007-02-08 16:20:52 -0800 |
commit | 4e244cbc5cc4c8a43982d4023bc0d9fb0b0c7d43 (patch) | |
tree | f759e8aafb4210b954147f24d52d95540454ec7e /reflog-walk.h | |
parent | b4dd485696d9fb754b0a44649ef4796883d3b903 (diff) | |
download | git-4e244cbc5cc4c8a43982d4023bc0d9fb0b0c7d43.tar.gz git-4e244cbc5cc4c8a43982d4023bc0d9fb0b0c7d43.tar.xz |
log --reflog: honour --relative-date
If you say "git log -g --relative-date", it is very likely that
you want to see the reflog names in terms of a relative date.
Signed-off-by: Johannes Schindelin <Johannes.Schindelin@gmx.de>
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 e63d86778..a4f7015d3 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, int); +extern void show_reflog_message(struct reflog_walk_info *info, int, int); #endif |