about summary refs log tree commit diff
path: root/Functions/Misc/run-help-git
diff options
context:
space:
mode:
authorBart Schaefer <barts@users.sourceforge.net>2007-12-31 22:13:46 +0000
committerBart Schaefer <barts@users.sourceforge.net>2007-12-31 22:13:46 +0000
commit66742c60451a1741688245d682471611f33372a5 (patch)
tree32f8baf32cbf505f89ed3d35de02104d7287c547 /Functions/Misc/run-help-git
parentf77eaddddf539497a77ffa019507530c1bcb50fb (diff)
downloadzsh-66742c60451a1741688245d682471611f33372a5.tar.gz
zsh-66742c60451a1741688245d682471611f33372a5.tar.xz
zsh-66742c60451a1741688245d682471611f33372a5.zip
24332, 24333: Improvements to run-help suggested by J.Sommer.
Diffstat (limited to 'Functions/Misc/run-help-git')
-rw-r--r--Functions/Misc/run-help-git10
1 files changed, 10 insertions, 0 deletions
diff --git a/Functions/Misc/run-help-git b/Functions/Misc/run-help-git
new file mode 100644
index 000000000..51c6e250c
--- /dev/null
+++ b/Functions/Misc/run-help-git
@@ -0,0 +1,10 @@
+#!/bin/zsh
+if [ $# -eq 0 ]; then
+    man git
+else
+    local al
+    if al=$(git config --get "alias.$1"); then
+        1=${al%% *}
+    fi
+    man git-$1
+fi