git.shon commit Diff: -l<num> to limit rename/copy detection. (8082d8d)
   1#!/bin/sh
   2
   3cmd=
   4path=$(dirname $0)
   5case "$#" in
   60)      ;;
   7*)      cmd="$1"
   8        shift
   9        case "$cmd" in
  10        -v|--v|--ve|--ver|--vers|--versi|--versio|--version)
  11                echo "git version @@GIT_VERSION@@"
  12                exit 0 ;;
  13        esac
  14        test -x $path/git-$cmd && exec $path/git-$cmd "$@" ;;
  15esac
  16
  17echo "Usage: git COMMAND [OPTIONS] [TARGET]"
  18if [ -n "$cmd" ]; then
  19    echo " git command '$cmd' not found: commands are:"
  20else
  21    echo " git commands are:"
  22fi
  23
  24cat <<\EOF
  25    add apply archimport bisect branch checkout cherry clone
  26    commit count-objects cvsimport diff fetch format-patch
  27    fsck-cache get-tar-commit-id init-db log ls-remote octopus
  28    pack-objects parse-remote patch-id prune pull push rebase
  29    relink rename repack request-pull reset resolve revert
  30    send-email shortlog show-branch status tag verify-tag
  31    whatchanged
  32EOF