aboutsummaryrefslogtreecommitdiff
path: root/fetch-pack.c
diff options
context:
space:
mode:
authorMatt McCutchen <matt@mattmccutchen.net>2017-02-22 11:01:22 -0500
committerJunio C Hamano <gitster@pobox.com>2017-03-02 11:12:53 -0800
commite860d96bf89fca63f664eb2d507f2f14537a9008 (patch)
treed949af9bf5302164996a363d2cb400586fa542e1 /fetch-pack.c
parent3b9e3c2cede15057af3ff8076c45ad5f33829436 (diff)
downloadgit-e860d96bf89fca63f664eb2d507f2f14537a9008.tar.gz
git-e860d96bf89fca63f664eb2d507f2f14537a9008.tar.xz
fetch-pack: move code to report unmatched refs to a function
Prepare to reuse this code in transport.c for "git fetch". While we're here, internationalize the existing error message. Signed-off-by: Matt McCutchen <matt@mattmccutchen.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'fetch-pack.c')
-rw-r--r--fetch-pack.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/fetch-pack.c b/fetch-pack.c
index 601f0779a..7c8d44c38 100644
--- a/fetch-pack.c
+++ b/fetch-pack.c
@@ -1094,3 +1094,16 @@ struct ref *fetch_pack(struct fetch_pack_args *args,
clear_shallow_info(&si);
return ref_cpy;
}
+
+int report_unmatched_refs(struct ref **sought, int nr_sought)
+{
+ int i, ret = 0;
+
+ for (i = 0; i < nr_sought; i++) {
+ if (!sought[i] || sought[i]->matched)
+ continue;
+ error(_("no such remote ref %s"), sought[i]->name);
+ ret = 1;
+ }
+ return ret;
+}