Fix prepare-commit-msg hook and replace in-place sed
The patterns to the case statement could never be matched, so the hook was a noop. This patch also replaces the non-portable use of in-place sed. Signed-off-by: Marcel Koeppen <git-dev@marzelpan.de> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
parent
6923972823
commit
4be1fe1b94
@ -20,11 +20,11 @@
|
||||
# The third example adds a Signed-off-by line to the message, that can
|
||||
# still be edited. This is rarely a good idea.
|
||||
|
||||
case "$2 $3" in
|
||||
merge)
|
||||
sed -i '/^Conflicts:/,/#/!b;s/^/# &/;s/^# #/#/' "$1" ;;
|
||||
case "$2,$3" in
|
||||
merge,)
|
||||
perl -i -ne 's/^/# /, s/^# #/#/ if /^Conflicts/ .. /#/; print' "$1" ;;
|
||||
|
||||
# ""|template)
|
||||
# ,|template,)
|
||||
# perl -i -pe '
|
||||
# print "\n" . `git diff --cached --name-status -r`
|
||||
# if /^#/ && $first++ == 0' "$1" ;;
|
||||
|
Loading…
Reference in New Issue
Block a user