From: Junio C Hamano <gitster@pobox.com>
To: Ronnie Sahlberg <sahlberg@google.com>
Cc: git@vger.kernel.org
Subject: Re: [PATCH 1/2] remotes.c: update calls to new signature for repack_without_refs
Date: Fri, 13 Jun 2014 12:40:37 -0700 [thread overview]
Message-ID: <xmqqwqck1tu2.fsf@gitster.dls.corp.google.com> (raw)
In-Reply-To: <1402674666-6634-2-git-send-email-sahlberg@google.com> (Ronnie Sahlberg's message of "Fri, 13 Jun 2014 08:51:05 -0700")
Ronnie Sahlberg <sahlberg@google.com> writes:
> This should be merged into patch:
> 00c74db refs.c: add an err argument to repack_without_refs
>
> Signed-off-by: Ronnie Sahlberg <sahlberg@google.com>
> ---
> builtin/remote.c | 5 +++--
> refs.h | 3 ++-
> 2 files changed, 5 insertions(+), 3 deletions(-)
>
> diff --git a/builtin/remote.c b/builtin/remote.c
> index c9102e8..401feb3 100644
> --- a/builtin/remote.c
> +++ b/builtin/remote.c
> @@ -755,7 +755,7 @@ static int remove_branches(struct string_list *branches)
> branch_names = xmalloc(branches->nr * sizeof(*branch_names));
> for (i = 0; i < branches->nr; i++)
> branch_names[i] = branches->items[i].string;
> - result |= repack_without_refs(branch_names, branches->nr);
> + result |= repack_without_refs(branch_names, branches->nr, NULL);
> free(branch_names);
>
> for (i = 0; i < branches->nr; i++) {
> @@ -1333,7 +1333,8 @@ static int prune_remote(const char *remote, int dry_run)
> for (i = 0; i < states.stale.nr; i++)
> delete_refs[i] = states.stale.items[i].util;
> if (!dry_run)
> - result |= repack_without_refs(delete_refs, states.stale.nr);
> + result |= repack_without_refs(delete_refs,
> + states.stale.nr, NULL);
> free(delete_refs);
> }
>
> diff --git a/refs.h b/refs.h
> index 1b236f7..db463d0 100644
> --- a/refs.h
> +++ b/refs.h
> @@ -162,7 +162,8 @@ extern void rollback_packed_refs(void);
> */
> int pack_refs(unsigned int flags);
>
> -extern int repack_without_refs(const char **refnames, int n);
> +extern int repack_without_refs(const char **refnames, int n,
> + struct strbuf *err);
>
> extern int ref_exists(const char *);
How does this related to v16? The reason I ask is because even
though v16 0/48 says it is to be applied on 'next' it won't at least
for me X-< and this is one of the early places where the patches
fail to apply without adjustment.
next prev parent reply other threads:[~2014-06-13 19:40 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-06-13 15:51 [PATCH 0/2] Fixes for the ref-transactions series in origin/pu Ronnie Sahlberg
2014-06-13 15:51 ` [PATCH 1/2] remotes.c: update calls to new signature for repack_without_refs Ronnie Sahlberg
2014-06-13 19:40 ` Junio C Hamano [this message]
2014-06-13 19:47 ` Ronnie Sahlberg
2014-06-13 15:51 ` [PATCH 2/2] receive-pack.c: add missing xstrdup Ronnie Sahlberg
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=xmqqwqck1tu2.fsf@gitster.dls.corp.google.com \
--to=gitster@pobox.com \
--cc=git@vger.kernel.org \
--cc=sahlberg@google.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