mirror of
				git://git.code.sf.net/p/zsh/code
				synced 2025-10-27 04:40:59 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			9 lines
		
	
	
	
		
			144 B
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
	
		
			144 B
		
	
	
	
		
			Text
		
	
	
	
	
	
| if [ $# -eq 0 ]; then
 | |
|     man git
 | |
| else
 | |
|     local al
 | |
|     if al=$(git config --get "alias.$1"); then
 | |
|         1=${al%% *}
 | |
|     fi
 | |
|     man git-$1
 | |
| fi
 |