Merge branch 'il/archive-err-signal' into maint

* il/archive-err-signal:
  Support ERR in remote archive like in fetch/push
This commit is contained in:
Junio C Hamano 2011-10-21 10:49:25 -07:00
Родитель c510259c02 908aaceb92
Коммит 689b047072
1 изменённых файлов: 2 добавлений и 0 удалений

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

@ -61,6 +61,8 @@ static int run_remote_archiver(int argc, const char **argv,
if (strcmp(buf, "ACK")) {
if (len > 5 && !prefixcmp(buf, "NACK "))
die(_("git archive: NACK %s"), buf + 5);
if (len > 4 && !prefixcmp(buf, "ERR "))
die(_("remote error: %s"), buf + 4);
die(_("git archive: protocol error"));
}