mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-01-01 05:16:05 +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
|