diff options
author | Junio C Hamano <junkio@cox.net> | 2006-01-06 04:50:37 +0100 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-01-06 05:02:33 +0100 |
commit | aa66c7ec77d474b737da607d6cb2d07f56628def (patch) | |
tree | b8090092fd2c9fe9b5365332ee7d421233c14403 /git-commit.sh | |
parent | git-fetch --tags: reject malformed tags. (diff) | |
download | git-aa66c7ec77d474b737da607d6cb2d07f56628def.tar.xz git-aa66c7ec77d474b737da607d6cb2d07f56628def.zip |
format-patch/commit: Quote single quote in the author name properly.
Noticed by Kyle McMartin.
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'git-commit.sh')
-rwxr-xr-x | git-commit.sh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/git-commit.sh b/git-commit.sh index 82d743bd03..193feeb5e4 100755 --- a/git-commit.sh +++ b/git-commit.sh @@ -165,6 +165,7 @@ then then pick_author_script=' /^author /{ + s/'\''/'\''\\'\'\''/g h s/^author \([^<]*\) <[^>]*> .*$/\1/ s/'\''/'\''\'\'\''/g |