mirror of
				https://github.com/lingble/tegra-demo-distro.git
				synced 2025-11-03 22:18:04 +00:00 
			
		
		
		
	To support the upcoming OE4T contributor guide wiki page, add a script which generates a pre-commit hook with Signed-off-by message appended. Signed-off-by: Dan Walkes <danwalkes@boulderai.com>
		
			
				
	
	
		
			16 lines
		
	
	
		
			341 B
		
	
	
	
		
			Plaintext
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			341 B
		
	
	
	
		
			Plaintext
		
	
	
		
			Executable File
		
	
	
	
	
#/bin/sh
 | 
						|
NAME=$(git config user.name)
 | 
						|
EMAIL=$(git config user.email)
 | 
						|
if [ -z "$NAME" ]; then
 | 
						|
    echo "empty git config user.name"
 | 
						|
    exit 1
 | 
						|
fi
 | 
						|
if [ -z "$EMAIL" ]; then
 | 
						|
    echo "empty git config user.email"
 | 
						|
    exit 1
 | 
						|
fi
 | 
						|
git interpret-trailers --if-exists doNothing --trailer \
 | 
						|
    "Signed-off-by: $NAME <$EMAIL>" \
 | 
						|
     --in-place "$1" 
 | 
						|
 |