diff options
author | Eric Wong <normalperson@yhbt.net> | 2006-12-28 01:16:19 -0800 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-12-28 01:39:09 -0800 |
commit | ed92f17026210db7ee4f3f0af39a569ae220cb5b (patch) | |
tree | 708b1f030b2dfbac2377db01bb38e9ec5cf12ad5 /t/Makefile | |
parent | t9200-git-cvsexportcommit.sh: quiet down commit (diff) | |
download | tgif-ed92f17026210db7ee4f3f0af39a569ae220cb5b.tar.xz |
git-svn: remove non-delta fetch code paths
We have less code to worry about now. As a bonus, --revision
can be used to reliably skip parts of history whenever fetch is
run, not just the first time. I'm not sure why anybody would
want to skip history in the middle, however...
For people (nearly everyone at the moment) without the
do_switch() function in their Perl SVN library, the entire tree
must be refetched if --follow-parent is used and a parent is
found. Future versions of SVN will have a working do_switch()
function accessible via Perl.
Accessing repositories on the local machine (especially file://
ones) is also slightly slower as a result; but I suspect most
git-svn users will be using it to access remote repositories.
Signed-off-by: Eric Wong <normalperson@yhbt.net>
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 't/Makefile')
-rw-r--r-- | t/Makefile | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/t/Makefile b/t/Makefile index 250a19019c..19e38508a7 100644 --- a/t/Makefile +++ b/t/Makefile @@ -23,8 +23,7 @@ clean: # we can test NO_OPTIMIZE_COMMITS independently of LC_ALL full-svn-test: - $(MAKE) $(TSVN) GIT_SVN_DELTA_FETCH=1 \ - GIT_SVN_NO_OPTIMIZE_COMMITS=1 LC_ALL=C + $(MAKE) $(TSVN) GIT_SVN_NO_OPTIMIZE_COMMITS=1 LC_ALL=C $(MAKE) $(TSVN) GIT_SVN_NO_OPTIMIZE_COMMITS=0 LC_ALL=en_US.UTF-8 .PHONY: $(T) clean |