X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=git-format-patch.sh;h=548d2d5847ee3ae34605316d34abef7c22832540;hb=93d69d86912c44206543f6670e93f9fc6f2f859f;hp=b43ba3909c200b84e23d678408a0bf876fd3f3c6;hpb=90279074ca5cc336a8bfffd47d19d089b291b432;p=git.git diff --git a/git-format-patch.sh b/git-format-patch.sh index b43ba390..548d2d58 100755 --- a/git-format-patch.sh +++ b/git-format-patch.sh @@ -8,6 +8,7 @@ usage () { echo >&2 "usage: $0"' [-n] [-o dir | --stdout] [--keep-subject] [--mbox] [--check] [--signoff] [-...] + [--help] ( from..to ... | upstream [ our-head ] ) Prepare each commit with its patch since our-head forked from upstream, @@ -63,6 +64,9 @@ do --output-directo|--output-director|--output-directory) case "$#" in 1) usage ;; esac; shift outdir="$1" ;; + -h|--h|--he|--hel|--help) + usage + ;; -*' '* | -*"$LF"* | -*' '*) # Ignore diff option that has whitespace for now. ;;