 7951bd3029
			
		
	
	7951bd3029
	
	
	
		
			
			t7500: test expected behavior of commit --squash t3415: test interaction of commit --squash with rebase --autosquash t3900: test commit --squash with i18n encodings Signed-off-by: Pat Notz <patnotz@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
		
			
				
	
	
		
			5 lines
		
	
	
		
			77 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			5 lines
		
	
	
		
			77 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/bin/sh
 | |
| sed -e "s/intermediate/edited/g" <"$1" >"$1-"
 | |
| mv "$1-" "$1"
 | |
| exit 0
 |