diff options
author | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-06-25 15:27:14 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-06-25 15:27:14 -0700 |
commit | bad50dc80f3b81a0bedb85ca0382b0086e5bf0c2 (patch) | |
tree | 21187dbf962a9630176ad8ffe9a14b59baaeee1e /Makefile | |
parent | 49397104f2317c91ac54a250cd8c65cacfc0bb9e (diff) | |
download | git-bad50dc80f3b81a0bedb85ca0382b0086e5bf0c2.tar.gz |
First cut at git-unpack-objects
So far it just reads the header and generates the list of objects.
It also sorts them by the order they are written in the pack file,
since that ends up being the same order we got them originally, and
is thus "most recent first".
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -36,7 +36,7 @@ PROG= git-update-cache git-diff-files git-init-db git-write-tree \ git-diff-helper git-tar-tree git-local-pull git-write-blob \ git-get-tar-commit-id git-mkdelta git-apply git-stripspace \ git-cvs2git git-diff-stages git-rev-parse git-patch-id \ - git-pack-objects + git-pack-objects git-unpack-objects all: $(PROG) @@ -124,6 +124,7 @@ git-diff-stages: diff-stages.c git-rev-parse: rev-parse.c git-patch-id: patch-id.c git-pack-objects: pack-objects.c +git-unpack-objects: unpack-objects.c git-http-pull: LIBS += -lcurl git-rev-list: LIBS += -lssl |