git-archive: wire up ZIP format.

Again, this is based on Rene Scharfe's earlier patch, but uses
the archiver support introduced by the previous patch.

Signed-off-by: Franck Bui-Huu <vagabon.xyz@gmail.com>
Acked-by: Rene Scharfe <rene.scharfe@lsrfire.ath.cx>
Signed-off-by: Junio C Hamano <junkio@cox.net>
This commit is contained in:
Franck Bui-Huu
2006-09-07 15:12:04 +02:00
committed by Junio C Hamano
parent efd8696cd7
commit ec06bff5e6
3 changed files with 30 additions and 0 deletions

View File

@ -16,6 +16,7 @@ static const char archive_usage[] = \
struct archiver archivers[] = {
{ .name = "tar", .write_archive = write_tar_archive },
{ .name = "zip", .write_archive = write_zip_archive },
};
static int run_remote_archiver(struct archiver *ar, int argc,