7 lines
		
	
	
	
		
			88 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
			
		
		
	
	
			7 lines
		
	
	
	
		
			88 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
| #!/usr/bin/env bash
 | |
| 
 | |
| if [[ $# > 0 ]]; then
 | |
|   git commit -m "$@"
 | |
| else
 | |
|   git commit -v
 | |
| fi
 |