diff options
author | Peter Anvin <hpa@tazenda.sc.orionmulti.com> | 2005-10-03 12:04:44 -0700 |
---|---|---|
committer | Peter Anvin <hpa@tazenda.sc.orionmulti.com> | 2005-10-03 12:04:44 -0700 |
commit | 79a9d8ea0d88a3667ad19be8e705405ab5d896f1 (patch) | |
tree | 15d04fe258e969f2a43aaff3c292286984d0147c /git.sh | |
parent | 039c6f162a63e9d91f360e2e6138e21a4015c543 (diff) | |
parent | baaac6a7143ad07de62926421f8740cd640c241c (diff) | |
download | git-79a9d8ea0d88a3667ad19be8e705405ab5d896f1.tar.gz |
Merge with master.kernel.org:/pub/scm/git/git.git
Diffstat (limited to 'git.sh')
-rwxr-xr-x | git.sh | 55 |
1 files changed, 44 insertions, 11 deletions
@@ -26,17 +26,50 @@ esac echo "Usage: git COMMAND [OPTIONS] [TARGET]" if [ -n "$cmd" ]; then - echo " git command '$cmd' not found: commands are:" -else - echo " git commands are:" + echo "git command '$cmd' not found." fi +echo "git commands are:" -cat <<\EOF - add apply archimport bisect branch checkout cherry clone - commit count-objects cvsimport diff fetch format-patch - fsck-cache get-tar-commit-id init-db log ls-remote octopus - pack-objects parse-remote patch-id prune pull push rebase - relink rename repack request-pull reset resolve revert - send-email shortlog show-branch status tag verify-tag - whatchanged +fmt <<\EOF | sed -e 's/^/ /' +add +apply +archimport +bisect +branch +checkout +cherry +clone +commit +count-objects +cvsimport +diff +fetch +format-patch +fsck-objects +get-tar-commit-id +init-db +log +ls-remote +octopus +pack-objects +parse-remote +patch-id +prune +pull +push +rebase +relink +rename +repack +request-pull +reset +resolve +revert +send-email +shortlog +show-branch +status +tag +verify-tag +whatchanged EOF |