File: run-help-git

package info (click to toggle)
zsh 4.3.6-6
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 14,436 kB
  • ctags: 7,192
  • sloc: ansic: 87,447; sh: 5,590; makefile: 836; perl: 619; awk: 381; sed: 16
file content (9 lines) | stat: -rw-r--r-- 144 bytes parent folder | download | duplicates (10)
1
2
3
4
5
6
7
8
9
if [ $# -eq 0 ]; then
    man git
else
    local al
    if al=$(git config --get "alias.$1"); then
        1=${al%% *}
    fi
    man git-$1
fi