Gives a better DWIM behaviour for --pretty=format:%gd, "stash list", and
"log -g", depending on how the starting point ("master" vs "master@{0}" vs
"master@{now}") and date formatting options (e.g. "--date=iso") are given
on the command line.
By Jeff King (4) and Junio C Hamano (1)
* jk/maint-reflog-walk-count-vs-time:
  reflog-walk: tell explicit --date=default from not having --date at all
  reflog-walk: always make HEAD@{0} show indexed selectors
  reflog-walk: clean up "flag" field of commit_reflog struct
  log: respect date_mode_explicit with --format:%gd
  t1411: add more selector index/date tests
		
	
		
			
				
	
	
		
			24 lines
		
	
	
		
			773 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			773 B
		
	
	
	
		
			C
		
	
	
	
	
	
#ifndef REFLOG_WALK_H
 | 
						|
#define REFLOG_WALK_H
 | 
						|
 | 
						|
#include "cache.h"
 | 
						|
 | 
						|
struct reflog_walk_info;
 | 
						|
 | 
						|
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,
 | 
						|
				enum date_mode, int force_date);
 | 
						|
extern void get_reflog_message(struct strbuf *sb,
 | 
						|
		struct reflog_walk_info *reflog_info);
 | 
						|
extern const char *get_reflog_ident(struct reflog_walk_info *reflog_info);
 | 
						|
extern void get_reflog_selector(struct strbuf *sb,
 | 
						|
		struct reflog_walk_info *reflog_info,
 | 
						|
		enum date_mode dmode, int force_date,
 | 
						|
		int shorten);
 | 
						|
 | 
						|
#endif
 |