Skip to content

Commit

Permalink
rename "match_refs()" to "match_push_refs()"
Browse files Browse the repository at this point in the history
Yes, there is a warning that says the function is only used by push in big
red letters in front of this function, but it didn't say a more important
thing it should have said: what the function is for and what it does.

Rename it and document it to avoid future confusion.

Signed-off-by: Junio C Hamano <gitster@pobox.com>
  • Loading branch information
gitster committed Sep 12, 2011
1 parent e6bcd97 commit 29753cd
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 14 deletions.
4 changes: 2 additions & 2 deletions builtin/remote.c
Expand Up @@ -389,8 +389,8 @@ static int get_push_ref_states(const struct ref *remote_refs,
local_refs = get_local_heads();
push_map = copy_ref_list(remote_refs);

match_refs(local_refs, &push_map, remote->push_refspec_nr,
remote->push_refspec, MATCH_REFS_NONE);
match_push_refs(local_refs, &push_map, remote->push_refspec_nr,
remote->push_refspec, MATCH_REFS_NONE);

states->push.strdup_strings = 1;
for (ref = push_map; ref; ref = ref->next) {
Expand Down
2 changes: 1 addition & 1 deletion builtin/send-pack.c
Expand Up @@ -509,7 +509,7 @@ int cmd_send_pack(int argc, const char **argv, const char *prefix)
flags |= MATCH_REFS_MIRROR;

/* match them up */
if (match_refs(local_refs, &remote_refs, nr_refspecs, refspecs, flags))
if (match_push_refs(local_refs, &remote_refs, nr_refspecs, refspecs, flags))
return -1;

set_ref_status_for_push(remote_refs, args.send_mirror,
Expand Down
4 changes: 2 additions & 2 deletions http-push.c
Expand Up @@ -1877,8 +1877,8 @@ int main(int argc, char **argv)
}

/* match them up */
if (match_refs(local_refs, &remote_refs,
nr_refspec, (const char **) refspec, push_all)) {
if (match_push_refs(local_refs, &remote_refs,
nr_refspec, (const char **) refspec, push_all)) {
rc = -1;
goto cleanup;
}
Expand Down
13 changes: 8 additions & 5 deletions remote.c
Expand Up @@ -1170,12 +1170,15 @@ static struct ref **tail_ref(struct ref **head)
}

/*
* Note. This is used only by "push"; refspec matching rules for
* push and fetch are subtly different, so do not try to reuse it
* without thinking.
* Given the set of refs the local repository has, the set of refs the
* remote repository has, and the refspec used for push, determine
* what remote refs we will update and with what value by setting
* peer_ref (which object is being pushed) and force (if the push is
* forced) in elements of "dst". The function may add new elements to
* dst (e.g. pushing to a new branch, done in match_explicit_refs).
*/
int match_refs(struct ref *src, struct ref **dst,
int nr_refspec, const char **refspec, int flags)
int match_push_refs(struct ref *src, struct ref **dst,
int nr_refspec, const char **refspec, int flags)
{
struct refspec *rs;
int send_all = flags & MATCH_REFS_ALL;
Expand Down
4 changes: 2 additions & 2 deletions remote.h
Expand Up @@ -96,8 +96,8 @@ void free_refspec(int nr_refspec, struct refspec *refspec);
char *apply_refspecs(struct refspec *refspecs, int nr_refspec,
const char *name);

int match_refs(struct ref *src, struct ref **dst,
int nr_refspec, const char **refspec, int all);
int match_push_refs(struct ref *src, struct ref **dst,
int nr_refspec, const char **refspec, int all);
void set_ref_status_for_push(struct ref *remote_refs, int send_mirror,
int force_update);

Expand Down
4 changes: 2 additions & 2 deletions transport.c
Expand Up @@ -1033,8 +1033,8 @@ int transport_push(struct transport *transport,
if (flags & TRANSPORT_PUSH_MIRROR)
match_flags |= MATCH_REFS_MIRROR;

if (match_refs(local_refs, &remote_refs,
refspec_nr, refspec, match_flags)) {
if (match_push_refs(local_refs, &remote_refs,
refspec_nr, refspec, match_flags)) {
return -1;
}

Expand Down

0 comments on commit 29753cd

Please sign in to comment.