summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKarl Hasselström <kha@treskal.com>2008-02-03 16:56:12 (GMT)
committerJunio C Hamano <gitster@pobox.com>2008-02-03 20:59:24 (GMT)
commitaf788a6eb510c1df4a3222b0403a088789ca2bac (patch)
treeb7d59d8c2f2e5644f1934ca14275cd86ed5d2714
parent36ee4ee40e1851442b0b075870cd5de5df6ee2b6 (diff)
downloadgit-af788a6eb510c1df4a3222b0403a088789ca2bac.zip
git-af788a6eb510c1df4a3222b0403a088789ca2bac.tar.gz
git-af788a6eb510c1df4a3222b0403a088789ca2bac.tar.bz2
git-svn: Don't call git-repack anymore
In a moment, we'll start calling git-gc --auto instead, since it is a better fit to what we're trying to accomplish. The command line options are still accepted, but don't have any effect, and we warn the user about that. Signed-off-by: Karl Hasselström <kha@treskal.com> Acked-by: Eric Wong <normalperson@yhbt.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rwxr-xr-xgit-svn.perl14
1 files changed, 3 insertions, 11 deletions
diff --git a/git-svn.perl b/git-svn.perl
index 75e97cc..074068c 100755
--- a/git-svn.perl
+++ b/git-svn.perl
@@ -1247,7 +1247,6 @@ use File::Path qw/mkpath/;
use File::Copy qw/copy/;
use IPC::Open3;
-my $_repack_nr;
# properties that we do not log:
my %SKIP_PROP;
BEGIN {
@@ -1408,9 +1407,9 @@ sub read_all_remotes {
}
sub init_vars {
- $_repack = 1000 unless (defined $_repack && $_repack > 0);
- $_repack_nr = $_repack;
- $_repack_flags ||= '-d';
+ if (defined $_repack || defined $_repack_flags) {
+ warn "Repack options are obsolete; they have no effect.\n";
+ }
}
sub verify_remotes_sanity {
@@ -2149,13 +2148,6 @@ sub do_git_commit {
0, $self->svm_uuid);
}
print " = $commit ($self->{ref_id})\n";
- if ($_repack && (--$_repack_nr == 0)) {
- $_repack_nr = $_repack;
- # repack doesn't use any arguments with spaces in them, does it?
- print "Running git repack $_repack_flags ...\n";
- command_noisy('repack', split(/\s+/, $_repack_flags));
- print "Done repacking\n";
- }
return $commit;
}