From: Junio C Hamano Date: Tue, 30 Aug 2005 04:19:04 +0000 (-0700) Subject: Do not verify reverted/cherry-picked/rebased patches. X-Git-Tag: v0.99.6~51 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=9fa4db544e2e4d6c931f6adabc5270daec041536;p=git.git Do not verify reverted/cherry-picked/rebased patches. The original committer may have used validation criteria that is less stricter than yours. You do not want to lose the changes even if they are done in substandard way from your 'commit -v' verifier's point of view. Signed-off-by: Junio C Hamano --- diff --git a/git-revert-script b/git-revert-script index dd5866ec9..82ed09380 100755 --- a/git-revert-script +++ b/git-revert-script @@ -158,7 +158,7 @@ echo >&2 "Finished one $me." case "$no_commit" in '') - git commit -F .msg + git-commit-script -n -F .msg rm -f .msg ;; esac