From: Junio C Hamano <gitster@pobox.com>
To: Johannes Sixt <j.sixt@viscovery.net>
Cc: Junichi Uekawa <dancer@netfort.gr.jp>, git@vger.kernel.org
Subject: Re: Git merge conflicts and encoding of logs
Date: Tue, 23 Dec 2008 02:04:57 -0800 [thread overview]
Message-ID: <7vlju7fbqu.fsf@gitster.siamese.dyndns.org> (raw)
In-Reply-To: <4950A422.5030100@viscovery.net> (Johannes Sixt's message of "Tue, 23 Dec 2008 09:41:06 +0100")
Johannes Sixt <j.sixt@viscovery.net> writes:
> Junio C Hamano schrieb:
>> <<<<<<< HEAD:foo
>> これはサイドブランチの変更です。
>> やはり JIS コードで書いてます。
>> =======
>> 日本語のファイルです。
>> JIS コードで書いてます。
>>>>>>>>> master:foo
>>
>> The above will probably come out as UTF-8 in this mail text, but the point
>> is that the confict side markers do not have anything but filename and the
>> branch name. I am still scratching my head trying to see where in the
>> merge-recursive codepath you got snippet of log message.
>
> Try rebase -i instead of merge: This should put summary lines onto the
> conflict markers.
Ah, that's cherry-pick.
The fix should be around the area this weather-balloon patch touches.
Note that this does not correctly work yet, and it seems that somewhere the
string is truncated.
But I won't be debugging it further for now...
----
builtin-revert.c | 15 ++++++++++++++-
1 files changed, 14 insertions(+), 1 deletions(-)
diff --git c/builtin-revert.c w/builtin-revert.c
index d48313c..47ff16f 100644
--- c/builtin-revert.c
+++ w/builtin-revert.c
@@ -244,6 +244,19 @@ static struct tree *empty_tree(void)
return tree;
}
+static char *branch_label_to_output_encoding(char *oneline)
+{
+ if (git_log_output_encoding &&
+ strcmp(git_log_output_encoding, git_commit_encoding)) {
+ char *it = reencode_string(oneline,
+ git_log_output_encoding,
+ git_commit_encoding);
+ if (it)
+ return it;
+ }
+ return oneline;
+}
+
static int revert_or_cherry_pick(int argc, const char **argv)
{
unsigned char head[20];
@@ -373,7 +386,7 @@ static int revert_or_cherry_pick(int argc, const char **argv)
read_cache();
init_merge_options(&o);
o.branch1 = "HEAD";
- o.branch2 = oneline;
+ o.branch2 = branch_label_to_output_encoding(oneline);
head_tree = parse_tree_indirect(head);
next_tree = next ? next->tree : empty_tree();
next prev parent reply other threads:[~2008-12-23 10:06 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-12-23 4:48 Git merge conflicts and encoding of logs Junichi Uekawa
2008-12-23 8:22 ` Junio C Hamano
2008-12-23 8:41 ` Johannes Sixt
2008-12-23 10:04 ` Junio C Hamano [this message]
2008-12-23 23:37 ` Junichi Uekawa
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=7vlju7fbqu.fsf@gitster.siamese.dyndns.org \
--to=gitster@pobox.com \
--cc=dancer@netfort.gr.jp \
--cc=git@vger.kernel.org \
--cc=j.sixt@viscovery.net \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).