mirror of
https://git.code.sf.net/p/zsh/code
synced 2026-01-30 21:14:08 +00:00
10 lines
144 B
Plaintext
10 lines
144 B
Plaintext
if [ $# -eq 0 ]; then
|
|
man git
|
|
else
|
|
local al
|
|
if al=$(git config --get "alias.$1"); then
|
|
1=${al%% *}
|
|
fi
|
|
man git-$1
|
|
fi
|