diff options
author | Junio C Hamano <junkio@cox.net> | 2005-05-01 21:09:28 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-05-01 21:09:28 -0700 |
commit | dfcb405799fa620028e492299a60438a7b4a35ff (patch) | |
tree | d665c428614ae46e307f988622aa09dc98cafdfe /Makefile | |
parent | ee4f439fea8974c4d9de798460eb95a2ac001156 (diff) | |
download | git-dfcb405799fa620028e492299a60438a7b4a35ff.tar.gz git-dfcb405799fa620028e492299a60438a7b4a35ff.tar.xz |
[PATCH] Add git-local-pull.
This adds the git-local-pull command as a smaller brother of
http-pull and rpull.
Signed-off-by: Junio C Hamano <junkio@cox.net>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -21,7 +21,7 @@ PROG= git-update-cache git-diff-files git-init-db git-write-tree \ git-check-files git-ls-tree git-merge-base git-merge-cache \ git-unpack-file git-export git-diff-cache git-convert-cache \ git-http-pull git-rpush git-rpull git-rev-list git-mktag \ - git-diff-tree-helper git-tar-tree + git-diff-tree-helper git-tar-tree git-local-pull all: $(PROG) @@ -87,6 +87,7 @@ git-export: export.c git-diff-cache: diff-cache.c git-convert-cache: convert-cache.c git-http-pull: http-pull.c pull.c +git-local-pull: local-pull.c pull.c git-rpush: rsh.c git-rpull: rsh.c pull.c git-rev-list: rev-list.c |