From: Junio C Hamano Date: Fri, 11 Nov 2005 07:34:08 +0000 (-0800) Subject: Do not lose author name information to locale gotchas. X-Git-Tag: v0.99.9h^2~31 X-Git-Url: https://git.lorimer.id.au/gitweb.git/diff_plain/e3e291fc07b49b74bb655ca854bdb19e849e044c?ds=inline;hp=e3e291fc07b49b74bb655ca854bdb19e849e044c Do not lose author name information to locale gotchas. I noticed format-patch loses authorship information of Lukas' patch when I run git tools with LC_LANG set to ja_JP. It turns out that the sed script to set environment variables were not working on his name (encoded in UTF-8), which is unfortunate but technically correct. Force sed invocation under C locale because we always want literal byte semantics. Signed-off-by: Junio C Hamano ---