diff options
author | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-06-29 19:09:05 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-06-29 19:09:05 -0700 |
commit | 61221472a5f8591f2d06d5e5c5aafb03271b8066 (patch) | |
tree | 20858c322501dedc0d713a91a175f66e54061a55 /Makefile | |
parent | Add first cut at "git-receive-pack" (diff) | |
download | tgif-61221472a5f8591f2d06d5e5c5aafb03271b8066.tar.xz |
Start of "git-send-pack", the local part of sending off a pack
Like git-receive-pack, this is only partway done.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -37,7 +37,7 @@ PROG= git-update-cache git-diff-files git-init-db git-write-tree \ git-get-tar-commit-id git-apply git-stripspace \ git-cvs2git git-diff-stages git-rev-parse git-patch-id \ git-pack-objects git-unpack-objects git-verify-pack \ - git-receive-pack + git-receive-pack git-send-pack all: $(PROG) @@ -127,6 +127,7 @@ git-pack-objects: pack-objects.c git-unpack-objects: unpack-objects.c git-verify-pack: verify-pack.c git-receive-pack: receive-pack.c +git-send-pack: send-pack.c git-http-pull: LIBS += -lcurl git-rev-list: LIBS += -lssl |