diff options
author | Junio C Hamano <gitster@pobox.com> | 2011-09-09 11:54:58 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2011-09-12 16:41:53 -0700 |
commit | 29753cddc8007ac63754855d026fe5eca8897d04 (patch) | |
tree | 6dfdf6cae4ff4c1729cf0b8dd400b99d6d494b1a /remote.h | |
parent | e6bcd979684d5a050bcb5d642e761e0ea350c6ec (diff) | |
download | git-29753cddc8007ac63754855d026fe5eca8897d04.tar.gz |
rename "match_refs()" to "match_push_refs()"jc/match-refs-clarify
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>
Diffstat (limited to 'remote.h')
-rw-r--r-- | remote.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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); |