diff options
author | Rene Scharfe <rene.scharfe@lsrfire.ath.cx> | 2006-08-26 23:19:21 +0200 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-08-26 18:27:35 -0700 |
commit | e4fbbfe9eccd37c0f9c060eac181ce05988db76c (patch) | |
tree | d48db03515fc3c96e9c7414272c3c0af507edcc0 /builtin.h | |
parent | 5f641ccc69da1e0f2e3953f615cf592e83ec721b (diff) | |
download | git-e4fbbfe9eccd37c0f9c060eac181ce05988db76c.tar.gz |
Add git-zip-tree
In the Windows world ZIP files are better supported than tar files.
Windows even includes built-in support for ZIP files nowadays.
git-zip-tree is similar to git-tar-tree; it creates ZIP files out of
git trees. It stores the commit ID (if available) in a ZIP file comment
which can be extracted by unzip.
There's still quite some room for improvement: this initial version
supports no symlinks, calls write() way too often (three times per file)
and there is no unit test.
[jc: with a minor typefix to avoid void* arithmetic]
Signed-off-by: Rene Scharfe <rene.scharfe@lsrfire.ath.cx>
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'builtin.h')
-rw-r--r-- | builtin.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -52,6 +52,7 @@ extern int cmd_show(int argc, const char **argv, const char *prefix); extern int cmd_stripspace(int argc, const char **argv, const char *prefix); extern int cmd_symbolic_ref(int argc, const char **argv, const char *prefix); extern int cmd_tar_tree(int argc, const char **argv, const char *prefix); +extern int cmd_zip_tree(int argc, const char **argv, const char *prefix); extern int cmd_unpack_objects(int argc, const char **argv, const char *prefix); extern int cmd_update_index(int argc, const char **argv, const char *prefix); extern int cmd_update_ref(int argc, const char **argv, const char *prefix); |