diff options
author | Daniel Barkalow <barkalow@iabervon.org> | 2007-09-10 23:03:04 -0400 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2007-09-19 03:22:30 -0700 |
commit | 9b288516ee63cea91dd9d102edcdf112caea4c75 (patch) | |
tree | 5cce5abb5b717bcb3710b8e9caabfdb1a7883df7 /Makefile | |
parent | 2d4177c01c238071777db5b1fbd8a14efb62ce02 (diff) | |
download | git-9b288516ee63cea91dd9d102edcdf112caea4c75.tar.gz git-9b288516ee63cea91dd9d102edcdf112caea4c75.tar.xz |
Push code for transport library
This moves the code to call push backends into a library that can be
extended to make matching fetch and push decisions based on the URL it
gets, and which could be changed to have built-in implementations
instead of calling external programs.
Signed-off-by: Daniel Barkalow <barkalow@iabervon.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -310,7 +310,8 @@ LIB_OBJS = \ write_or_die.o trace.o list-objects.o grep.o match-trees.o \ alloc.o merge-file.o path-list.o help.o unpack-trees.o $(DIFF_OBJS) \ color.o wt-status.o archive-zip.o archive-tar.o shallow.o utf8.o \ - convert.o attr.o decorate.o progress.o mailmap.o symlinks.o remote.o + convert.o attr.o decorate.o progress.o mailmap.o symlinks.o remote.o \ + transport.o BUILTIN_OBJS = \ builtin-add.o \ |