Includes commits from these pull requests:

	#188

Signed-off-by: Derrick Stolee <dstolee@microsoft.com>
This commit is contained in:
Johannes Schindelin 2018-10-18 14:03:34 +02:00 коммит произвёл Derrick Stolee
Родитель f5527f0a28 e401874224
Коммит 26f52f4e7c
1 изменённых файлов: 3 добавлений и 2 удалений

Просмотреть файл

@ -613,11 +613,12 @@ error:
for (i = 0; i < want_obj->nr; i++) {
struct object *o = want_obj->objects[i].item;
if (!is_our_ref(o)) {
warning("git upload-pack: not our ref %s",
oid_to_hex(&o->oid));
packet_writer_error(writer,
"upload-pack: not our ref %s",
oid_to_hex(&o->oid));
die("git upload-pack: not our ref %s",
oid_to_hex(&o->oid));
exit(1);
}
}
}