From: "rae l" <crquan@gmail.com>
To: "Junio C Hamano" <gitster@pobox.com>
Cc: git@vger.kernel.org
Subject: Re: [PATCH 3/3] git-remote: simplifying get_one_entry
Date: Tue, 18 Nov 2008 08:56:12 +0800 [thread overview]
Message-ID: <91b13c310811171656v54363993rfe0f149e7d1da0b0@mail.gmail.com> (raw)
In-Reply-To: <7vabbywb75.fsf@gitster.siamese.dyndns.org>
On Tue, Nov 18, 2008 at 12:48 AM, Junio C Hamano <gitster@pobox.com> wrote:
> crquan@gmail.com writes:
>
>> From: Cheng Renquan <crquan@gmail.com>
>>
>> The loop for remote->url_nr is really useless, set to the last one
>> directly is better.
>
> Is it really useless? Be more descriptive.
>
>> - if (remote->url_nr > 0) {
>> - int i;
>> -
>> - for (i = 0; i < remote->url_nr; i++)
>> - string_list_append(remote->name, list)->util = (void *)remote->url[i];
>> - } else
>> - string_list_append(remote->name, list)->util = NULL;
>> + string_list_append(remote->name, list)->util =
>> + remote->url_nr > 0
>> + ? (void *)remote->url[remote->url_nr-1] : NULL;
>
> When you have more than one URL associated with the remote (this makes
> sense only for pushing), the current code adds that many string_list_item
> to the list, each holding the URL. "git remote -v" shows all of them.
>
> Your change instead creates only one string_list_item and hold the last
> URL. Doesn't it make show_all() to show only one URL for the remote?
Sorry, this patch is totally wrong, I will regenerate the other two and resend.
Thanks for your patience.
--
Cheng Renquan, Shenzhen, China
Steven Wright - "Cross country skiing is great if you live in a small country."
next prev parent reply other threads:[~2008-11-18 0:57 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-11-17 11:15 [PATCH 1/3] git-remote: match usage string with the manual pages crquan
2008-11-17 11:15 ` [PATCH 2/3] git-remote: add verbose mode to git remote update crquan
2008-11-17 11:15 ` [PATCH 3/3] git-remote: simplifying get_one_entry crquan
2008-11-17 16:48 ` Junio C Hamano
2008-11-18 0:56 ` rae l [this message]
2008-11-17 16:46 ` [PATCH 2/3] git-remote: add verbose mode to git remote update Junio C Hamano
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=91b13c310811171656v54363993rfe0f149e7d1da0b0@mail.gmail.com \
--to=crquan@gmail.com \
--cc=git@vger.kernel.org \
--cc=gitster@pobox.com \
/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).