aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunio C Hamano <junkio@cox.net>2005-08-29 21:19:04 -0700
committerJunio C Hamano <junkio@cox.net>2005-08-29 21:19:04 -0700
commit9fa4db544e2e4d6c931f6adabc5270daec041536 (patch)
tree6939d11dee964166126714523cdd58dd2db3d31d
parent5de36bfec9beb65f8d0328b367dcf0e7d74d30bb (diff)
downloadgit-9fa4db544e2e4d6c931f6adabc5270daec041536.tar.gz
git-9fa4db544e2e4d6c931f6adabc5270daec041536.tar.xz
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 <junkio@cox.net>
-rwxr-xr-xgit-revert-script2
1 files changed, 1 insertions, 1 deletions
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