 52f1e82178
			
		
	
	52f1e82178
	
	
	
		
			
			In preparation for `git-rebase--preserve-merges.sh` entering its after life, we remove this (deprecated) option that would still rely on it. To help users transition who still did not receive the memo about the deprecation, we offer a helpful error message instead of throwing our hands in the air and saying that we don't know that option, never heard of it. Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de> Reviewed-by: Ævar Arnfjörð Bjarmason <avarab@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
		
			
				
	
	
		
			15 lines
		
	
	
		
			226 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			226 B
		
	
	
	
		
			C
		
	
	
	
	
	
| #ifndef REBASE_H
 | |
| #define REBASE_H
 | |
| 
 | |
| enum rebase_type {
 | |
| 	REBASE_INVALID = -1,
 | |
| 	REBASE_FALSE = 0,
 | |
| 	REBASE_TRUE,
 | |
| 	REBASE_MERGES,
 | |
| 	REBASE_INTERACTIVE
 | |
| };
 | |
| 
 | |
| enum rebase_type rebase_parse_value(const char *value);
 | |
| 
 | |
| #endif /* REBASE */
 |