diff options
Diffstat (limited to 'git-applypatch.sh')
-rwxr-xr-x | git-applypatch.sh | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/git-applypatch.sh b/git-applypatch.sh index a112e1a504..e8ba34a0ad 100755 --- a/git-applypatch.sh +++ b/git-applypatch.sh @@ -10,8 +10,12 @@ ## $3 - "info" file with Author, email and subject ## $4 - optional file containing signoff to add ## + +USAGE='<msg> <patch> <info> [<signoff>]' . git-sh-setup +case "$#" in 3|4) usage ;; esac + final=.dotest/final-commit ## ## If this file exists, we ask before applying |