3 # This tool is copyright (c) 2005, Matthias Urlichs.
4 # It is released under the Gnu Public License, version 2.
6 # The basic idea is to pull and analyze SVN changes.
8 # Checking out the files is done by a single long-running SVN connection.
10 # The head revision is on branch "origin" by default.
11 # You can change that with the '-o' option.
18 use File
::Temp
qw(tempfile);
19 use File
::Path
qw(mkpath);
20 use File
::Basename
qw(basename dirname);
23 use POSIX
qw(strftime dup2);
28 die "Need SVN:Core 1.2.1 or better" if $SVN::Core
::VERSION
lt "1.2.1";
30 $SIG{'PIPE'}="IGNORE";
33 our($opt_h,$opt_o,$opt_v,$opt_u,$opt_C,$opt_i,$opt_m,$opt_M,$opt_t,$opt_T,
34 $opt_b,$opt_r,$opt_I,$opt_A,$opt_s,$opt_l,$opt_d,$opt_D,$opt_S,$opt_F,
39 Usage: ${\basename $0} # fetch/update GIT from SVN
40 [-o branch-for-HEAD] [-h] [-v] [-l max_rev] [-R repack_each_revs]
41 [-C GIT_repository] [-t tagname] [-T trunkname] [-b branchname]
42 [-d|-D] [-i] [-u] [-r] [-I ignorefilename] [-s start_chg]
43 [-m] [-M regex] [-A author_file] [-S] [-F] [-P project_name] [SVN_URL]
48 getopts
("A:b:C:dDFhiI:l:mM:o:rs:t:T:SP:R:uv") or usage
();
51 my $tag_name = $opt_t || "tags";
52 my $trunk_name = defined $opt_T ?
$opt_T : "trunk";
53 my $branch_name = $opt_b || "branches";
54 my $project_name = $opt_P || "";
55 $project_name = "/" . $project_name if ($project_name);
56 my $repack_after = $opt_R || 1000;
58 @ARGV == 1 or @ARGV == 2 or usage
();
62 my $git_tree = $opt_C;
65 my $svn_url = $ARGV[0];
66 my $svn_dir = $ARGV[1];
70 my $branch_esc = quotemeta ($branch_name);
71 my $trunk_esc = quotemeta ($trunk_name);
74 qr!\b(?:merg(?:ed?|ing))\b.*?\b((?:(?<=$branch_esc/)[\w\.\-]+)|(?:$trunk_esc))\b!i,
75 qr!\b(?:from|of)\W+((?:(?<=$branch_esc/)[\w\.\-]+)|(?:$trunk_esc))\b!i,
76 qr!\b(?:from|of)\W+(?:the )?([\w\.\-]+)[-\s]branch\b!i
80 unshift (@mergerx, qr/$opt_M/);
83 # Absolutize filename now, since we will have chdir'ed by the time we
84 # get around to opening it.
85 $opt_A = File
::Spec
->rel2abs($opt_A) if $opt_A;
88 our $users_file = undef;
90 $users_file = File
::Spec
->rel2abs(@_);
91 die "Cannot open $users_file\n" unless -f
$users_file;
92 open(my $authors,$users_file);
95 next unless /^(\S+?)\s*=\s*(.+?)\s*<(.+)>\s*$/;
96 (my $user,my $name,my $email) = ($1,$2,$3);
97 $users{$user} = [$name,$email];
102 select(STDERR
); $|=1; select(STDOUT
);
106 # Basic SVN connection.
107 # We're only interested in connecting and downloading, so ...
110 use File
::Temp
qw(tempfile);
111 use POSIX
qw(strftime dup2);
112 use Fcntl
qw(SEEK_SET);
115 my($what,$repo) = @_;
116 $what=ref($what) if ref($what);
119 $self->{'buffer'} = "";
123 $self->{'fullrep'} = $repo;
131 my $repo = $self->{'fullrep'};
132 my $auth = SVN
::Core
::auth_open
([SVN
::Client
::get_simple_provider
,
133 SVN
::Client
::get_ssl_server_trust_file_provider
,
134 SVN
::Client
::get_username_provider
]);
135 my $s = SVN
::Ra
->new(url
=> $repo, auth
=> $auth);
136 die "SVN connection to $repo: $!\n" unless defined $s;
138 $self->{'repo'} = $repo;
139 $self->{'maxrev'} = $s->get_latest_revnum();
143 my($self,$path,$rev) = @_;
145 my ($fh, $name) = tempfile
('gitsvn.XXXXXX',
146 DIR
=> File
::Spec
->tmpdir(), UNLINK
=> 1);
148 print "... $rev $path ...\n" if $opt_v;
149 my (undef, $properties);
150 my $pool = SVN
::Pool
->new();
152 eval { (undef, $properties)
153 = $self->{'svn'}->get_file($path,$rev,$fh,$pool); };
156 return undef if $@
=~ /Attempted to get checksum/;
160 if (exists $properties->{'svn:executable'}) {
162 } elsif (exists $properties->{'svn:special'}) {
163 my ($special_content, $filesize);
164 $filesize = tell $fh;
165 seek $fh, 0, SEEK_SET
;
166 read $fh, $special_content, $filesize;
167 if ($special_content =~ s/^link //) {
169 seek $fh, 0, SEEK_SET
;
171 print $fh $special_content;
173 die "unexpected svn:special file encountered";
180 return ($name, $mode);
184 my($self,$path,$rev) = @_;
186 print "... $rev $path ...\n" if $opt_v;
188 my (undef,undef,$properties)
189 = $self->{'svn'}->get_dir($path,$rev,undef);
190 if (exists $properties->{'svn:ignore'}) {
191 my ($fh, $name) = tempfile
('gitsvn.XXXXXX',
192 DIR
=> File
::Spec
->tmpdir(),
194 print $fh $properties->{'svn:ignore'};
203 my($self,$path,$rev) = @_;
205 my ($dirents,undef,$properties)
206 = $self->{'svn'}->get_dir($path,$rev,undef);
214 $svn .= "/$svn_dir" if defined $svn_dir;
215 my $svn2 = SVNconn
->new($svn);
216 $svn = SVNconn
->new($svn);
219 if($opt_d or $opt_D) {
220 $svn_url = URI
->new($svn_url)->canonical;
222 $svn_dir =~ s
#/*$#/#;
226 if ($svn_url->scheme eq "http") {
228 $lwp_ua = LWP
::UserAgent
->new(keep_alive
=> 1, requests_redirectable
=> []);
230 print STDERR
"Warning: not HTTP; turning off direct file access\n";
237 $d =~ m
#(\d\d\d\d)-(\d\d)-(\d\d)T(\d\d):(\d\d):(\d\d)#
238 or die "Unparseable date: $d\n";
239 my $y=$1; $y-=1900 if $y>1900;
240 return timegm
($6||0,$5,$4,$3,$2-1,$y);
250 sub get_headref
($$) {
255 if (open(C
,"$git_dir/refs/heads/$name")) {
259 or die "Cannot get head id for $name ($sha): $!\n";
266 or mkdir($git_tree,0777)
267 or die "Could not create $git_tree: $!";
270 my $orig_branch = "";
271 my $forward_master = 0;
274 my $git_dir = $ENV{"GIT_DIR"} || ".git";
275 $git_dir = getwd
()."/".$git_dir unless $git_dir =~ m
#^/#;
276 $ENV{"GIT_DIR"} = $git_dir;
278 $orig_git_index = $ENV{GIT_INDEX_FILE
} if exists $ENV{GIT_INDEX_FILE
};
279 my ($git_ih, $git_index) = tempfile
('gitXXXXXX', SUFFIX
=> '.idx',
280 DIR
=> File
::Spec
->tmpdir());
282 $ENV{GIT_INDEX_FILE
} = $git_index;
286 my $current_rev = $opt_s || 1;
287 unless(-d
$git_dir) {
289 die "Cannot init the GIT db at $git_tree: $?\n" if $?
;
290 system("git-read-tree");
291 die "Cannot init an empty tree: $?\n" if $?
;
293 $last_branch = $opt_o;
296 -f
"$git_dir/refs/heads/$opt_o"
297 or die "Branch '$opt_o' does not exist.\n".
298 "Either use the correct '-o branch' option,\n".
299 "or import to a new repository.\n";
301 -f
"$git_dir/svn2git"
302 or die "'$git_dir/svn2git' does not exist.\n".
303 "You need that file for incremental imports.\n";
304 open(F
, "git-symbolic-ref HEAD |") or
305 die "Cannot run git-symbolic-ref: $!\n";
306 chomp ($last_branch = <F
>);
307 $last_branch = basename
($last_branch);
309 unless($last_branch) {
310 warn "Cannot read the last branch name: $! -- assuming 'master'\n";
311 $last_branch = "master";
313 $orig_branch = $last_branch;
314 $last_rev = get_headref
($orig_branch, $git_dir);
315 if (-f
"$git_dir/SVN2GIT_HEAD") {
318 Make sure your working directory corresponds to HEAD and remove SVN2GIT_HEAD.
321 git-read-tree -m -u SVN2GIT_HEAD HEAD
324 system('cp', "$git_dir/HEAD", "$git_dir/SVN2GIT_HEAD");
327 $opt_o ne 'master' && -f
"$git_dir/refs/heads/master" &&
328 system('cmp', '-s', "$git_dir/refs/heads/master",
329 "$git_dir/refs/heads/$opt_o") == 0;
332 system('git-read-tree', $last_rev);
333 die "read-tree failed: $?\n" if $?
;
335 # Get the last import timestamps
336 open my $B,"<", "$git_dir/svn2git";
339 my($num,$branch,$ref) = split;
340 $branches{$branch}{$num} = $ref;
341 $branches{$branch}{"LAST"} = $ref;
342 $current_rev = $num+1 if $current_rev <= $num;
347 or die "Could not create git subdir ($git_dir).\n";
349 my $default_authors = "$git_dir/svn-authors";
352 copy
($opt_A,$default_authors) or die "Copy failed: $!";
354 read_users
($default_authors) if -f
$default_authors;
357 open BRANCHES
,">>", "$git_dir/svn2git";
360 my ($svnpath, $revision) = @_;
361 my $pool=SVN
::Pool
->new;
363 my $kind = $svn->{'svn'}->check_path($svnpath,$revision,$pool);
369 my($svnpath,$rev,$path) = @_;
376 # /svn/!svn/bc/2/django/trunk/django-docs/build.py
377 my $url=$svn_url->clone();
378 $url->path($url->path."/!svn/bc/$rev/$svn_dir$svnpath");
379 print "... $path...\n" if $opt_v;
380 $req = HTTP
::Request
->new(GET
=> $url);
381 $res = $lwp_ua->request($req);
382 if ($res->is_success) {
384 ($fh, $name) = tempfile
('gitsvn.XXXXXX',
385 DIR
=> File
::Spec
->tmpdir(), UNLINK
=> 1);
386 print $fh $res->content;
387 close($fh) or die "Could not write $name: $!\n";
389 return undef if $res->code == 301; # directory?
390 die $res->status_line." at $url\n";
392 $mode = '0644'; # can't obtain mode via direct http request?
394 ($name,$mode) = $svn->file("$svnpath",$rev);
395 return undef unless defined $name;
398 my $pid = open(my $F, '-|');
399 die $! unless defined $pid;
401 exec("git-hash-object", "-w", $name)
402 or die "Cannot create object: $!\n";
408 return [$mode, $sha, $path];
411 sub get_ignore
($$$$$) {
412 my($new,$old,$rev,$path,$svnpath) = @_;
414 return unless $opt_I;
415 my $name = $svn->ignore("$svnpath",$rev);
419 $path = File
::Spec
->catfile($path,$opt_I);
422 my $pid = open(my $F, '-|');
423 die $! unless defined $pid;
425 exec("git-hash-object", "-w", $name)
426 or die "Cannot create object: $!\n";
432 push(@
$new,['0644',$sha,$path]);
433 } elsif (defined $old) {
440 my ($path, $project) = @_;
442 $path = "/".$path unless ($path =~ m
#^\/#) ;
443 return $1 if ($path =~ m
#^$project\/(.*)$#);
445 $path =~ s
#\.#\\\.#g;
446 $path =~ s
#\+#\\\+#g;
447 return "/" if ($project =~ m
#^$path.*$#);
456 if($path =~ s
#^/\Q$tag_name\E/([^/]+)/?##) {
458 } elsif($path =~ s
#^/\Q$trunk_name\E/?##) {
460 } elsif($path =~ s
#^/\Q$branch_name\E/([^/]+)/?##) {
468 print STDERR
"$rev: Unrecognized path: $path\n" unless (defined $no_error{$path});
473 } elsif ($project_name) {
474 $path = project_path
($path, $project_name);
476 return ($branch,$path);
481 my ($srcbranch,$uptorev) = @_;
483 my $bbranches = $branches{$srcbranch};
484 my @revs = reverse sort { ($a eq 'LAST' ?
0 : $a) <=> ($b eq 'LAST' ?
0 : $b) } keys %$bbranches;
486 foreach my $arev(@revs) {
487 next if ($arev eq 'LAST');
488 if ($arev <= $uptorev) {
496 sub expand_svndir
($$$);
498 sub expand_svndir
($$$)
500 my ($svnpath, $rev, $path) = @_;
502 get_ignore
(\
@list, undef, $rev, $path, $svnpath);
503 my $dirents = $svn->dir_list($svnpath, $rev);
504 foreach my $p(keys %$dirents) {
505 my $kind = node_kind
($svnpath.'/'.$p, $rev);
506 if ($kind eq $SVN::Node
::file
) {
507 my $f = get_file
($svnpath.'/'.$p, $rev, $path.'/'.$p);
508 push(@list, $f) if $f;
509 } elsif ($kind eq $SVN::Node
::dir
) {
511 expand_svndir
($svnpath.'/'.$p, $rev, $path.'/'.$p));
517 sub copy_path
($$$$$$$$) {
518 # Somebody copied a whole subdirectory.
519 # We need to find the index entries from the old version which the
520 # SVN log entry points to, and add them to the new place.
522 my($newrev,$newbranch,$path,$oldpath,$rev,$node_kind,$new,$parents) = @_;
524 my($srcbranch,$srcpath) = split_path
($rev,$oldpath);
525 unless(defined $srcbranch && defined $srcpath) {
526 print "Path not found when copying from $oldpath @ $rev.\n".
527 "Will try to copy from original SVN location...\n"
529 push (@
$new, expand_svndir
($oldpath, $rev, $path));
532 my $therev = branch_rev
($srcbranch, $rev);
533 my $gitrev = $branches{$srcbranch}{$therev};
535 print STDERR
"$newrev:$newbranch: could not find $oldpath \@ $rev\n";
538 if ($srcbranch ne $newbranch) {
539 push(@
$parents, $branches{$srcbranch}{'LAST'});
541 print "$newrev:$newbranch:$path: copying from $srcbranch:$srcpath @ $rev\n" if $opt_v;
542 if ($node_kind eq $SVN::Node
::dir
) {
543 $srcpath =~ s
#/*$#/#;
546 my $pid = open my $f,'-|';
547 die $! unless defined $pid;
549 exec("git-ls-tree","-r","-z",$gitrev,$srcpath)
555 my($m,$p) = split(/\t/,$_,2);
556 my($mode,$type,$sha1) = split(/ /,$m);
557 next if $type ne "blob";
558 if ($node_kind eq $SVN::Node
::dir
) {
559 $p = $path . substr($p,length($srcpath)-1);
563 push(@
$new,[$mode,$sha1,$p]);
566 print STDERR
"$newrev:$newbranch: could not list files in $oldpath \@ $rev\n";
570 my($branch, $changed_paths, $revision, $author, $date, $message) = @_;
571 my($committer_name,$committer_email,$dest);
572 my($author_name,$author_email);
573 my(@old,@new,@parents);
575 if (not defined $author or $author eq "") {
576 $committer_name = $committer_email = "unknown";
577 } elsif (defined $users_file) {
578 die "User $author is not listed in $users_file\n"
579 unless exists $users{$author};
580 ($committer_name,$committer_email) = @
{$users{$author}};
581 } elsif ($author =~ /^(.*?)\s+<(.*)>$/) {
582 ($committer_name, $committer_email) = ($1, $2);
584 $author =~ s/^<(.*)>$/$1/;
585 $committer_name = $committer_email = $author;
588 if ($opt_F && $message =~ /From:\s+(.*?)\s+<(.*)>\s*\n/) {
589 ($author_name, $author_email) = ($1, $2);
590 print "Author from From: $1 <$2>\n" if ($opt_v);;
591 } elsif ($opt_S && $message =~ /Signed-off-by:\s+(.*?)\s+<(.*)>\s*\n/) {
592 ($author_name, $author_email) = ($1, $2);
593 print "Author from Signed-off-by: $1 <$2>\n" if ($opt_v);;
595 $author_name = $committer_name;
596 $author_email = $committer_email;
599 $date = pdate
($date);
603 if($branch eq "/") { # trunk
605 } elsif($branch =~ m
#^/(.+)#) { # tag
608 } else { # "normal" branch
614 my $prev = $changed_paths->{"/"};
615 if($prev and $prev->[0] eq "A") {
616 delete $changed_paths->{"/"};
617 my $oldpath = $prev->[1];
619 if(defined $oldpath) {
621 ($parent,$p) = split_path
($revision,$oldpath);
622 if(defined $parent) {
626 $parent =~ s
#^/##; # if it's a tag
635 if($revision > $opt_s and defined $parent) {
636 open(H
,"git-rev-parse --verify $parent |");
639 print STDERR
"$revision: cannot find commit '$parent'!\n";
643 if(length($rev) != 40) {
644 print STDERR
"$revision: cannot find commit '$parent'!\n";
647 $rev = $branches{($parent eq $opt_o) ?
"/" : $parent}{"LAST"};
648 if($revision != $opt_s and not $rev) {
649 print STDERR
"$revision: do not know ancestor for '$parent'!\n";
656 # if($prev and $prev->[0] eq "A") {
658 # unless(open(H,"> $git_dir/refs/heads/$branch")) {
659 # print STDERR "$revision: Could not create branch $branch: $!\n";
664 # or die "Could not write branch $branch: $!";
666 # or die "Could not write branch $branch: $!";
669 if(not defined $rev) {
671 } elsif ($rev ne $last_rev) {
672 print "Switching from $last_rev to $rev ($branch)\n" if $opt_v;
673 system("git-read-tree", $rev);
674 die "read-tree failed for $rev: $?\n" if $?
;
678 push (@parents, $rev) if defined $rev;
681 if($tag and not %$changed_paths) {
684 my @paths = sort keys %$changed_paths;
685 foreach my $path(@paths) {
686 my $action = $changed_paths->{$path};
688 if ($action->[0] eq "R") {
689 # refer to a file/tree in an earlier commit
690 push(@old,$path); # remove any old stuff
692 if(($action->[0] eq "A") || ($action->[0] eq "R")) {
693 my $node_kind = node_kind
($action->[3], $revision);
694 if ($node_kind eq $SVN::Node
::file
) {
695 my $f = get_file
($action->[3],
700 my $opath = $action->[3];
701 print STDERR
"$revision: $branch: could not fetch '$opath'\n";
703 } elsif ($node_kind eq $SVN::Node
::dir
) {
705 copy_path
($revision, $branch,
707 $action->[2], $node_kind,
710 get_ignore
(\
@new, \
@old, $revision,
711 $path, $action->[3]);
714 } elsif ($action->[0] eq "D") {
716 } elsif ($action->[0] eq "M") {
717 my $node_kind = node_kind
($action->[3], $revision);
718 if ($node_kind eq $SVN::Node
::file
) {
719 my $f = get_file
($action->[3],
722 } elsif ($node_kind eq $SVN::Node
::dir
) {
723 get_ignore
(\
@new, \
@old, $revision,
724 $path, $action->[3]);
727 die "$revision: unknown action '".$action->[0]."' for $path\n";
734 @o1 = splice(@old,0,50);
739 my $pid = open my $F, "-|";
740 die "$!" unless defined $pid;
742 exec("git-ls-files", "-z", @o1) or die $!;
755 @o2 = splice(@o1,0,50);
760 system("git-update-index","--force-remove","--",@o2);
761 die "Cannot remove files: $?\n" if $?
;
767 @n2 = splice(@new,0,10);
772 system("git-update-index","--add",
773 (map { ('--cacheinfo', @
$_) } @n2));
774 die "Cannot add files: $?\n" if $?
;
777 my $pid = open(C
,"-|");
778 die "Cannot fork: $!" unless defined $pid;
780 exec("git-write-tree");
781 die "Cannot exec git-write-tree: $!\n";
783 chomp(my $tree = <C
>);
785 or die "Cannot get tree id ($tree): $!\n";
787 or die "Error running git-write-tree: $?\n";
788 print "Tree ID $tree\n" if $opt_v;
790 my $pr = IO
::Pipe
->new() or die "Cannot open pipe: $!\n";
791 my $pw = IO
::Pipe
->new() or die "Cannot open pipe: $!\n";
793 die "Fork: $!\n" unless defined $pid;
797 open(OUT
,">&STDOUT");
798 dup2
($pw->fileno(),0);
799 dup2
($pr->fileno(),1);
805 # loose detection of merges
806 # based on the commit msg
807 foreach my $rx (@mergerx) {
808 if ($message =~ $rx) {
810 if ($mparent eq 'HEAD') { $mparent = $opt_o };
811 if ( -e
"$git_dir/refs/heads/$mparent") {
812 $mparent = get_headref
($mparent, $git_dir);
813 push (@parents, $mparent);
814 print OUT
"Merge parent branch: $mparent\n" if $opt_v;
818 my %seen_parents = ();
819 my @unique_parents = grep { ! $seen_parents{$_} ++ } @parents;
820 foreach my $bparent (@unique_parents) {
821 push @par, '-p', $bparent;
822 print OUT
"Merge parent branch: $bparent\n" if $opt_v;
826 "GIT_AUTHOR_NAME=$author_name",
827 "GIT_AUTHOR_EMAIL=$author_email",
828 "GIT_AUTHOR_DATE=".strftime
("+0000 %Y-%m-%d %H:%M:%S",gmtime($date)),
829 "GIT_COMMITTER_NAME=$committer_name",
830 "GIT_COMMITTER_EMAIL=$committer_email",
831 "GIT_COMMITTER_DATE=".strftime
("+0000 %Y-%m-%d %H:%M:%S",gmtime($date)),
832 "git-commit-tree", $tree,@par);
833 die "Cannot exec git-commit-tree: $!\n";
838 $message =~ s/[\s\n]+\z//;
839 $message = "r$revision: $message" if $opt_r;
841 print $pw "$message\n"
842 or die "Error writing to git-commit-tree: $!\n";
845 print "Committed change $revision:$branch ".strftime
("%Y-%m-%d %H:%M:%S",gmtime($date)).")\n" if $opt_v;
848 or die "Cannot get commit id ($cid): $!\n";
849 print "Commit ID $cid\n" if $opt_v;
853 die "Error running git-commit-tree: $?\n" if $?
;
856 if (not defined $cid) {
857 $cid = $branches{"/"}{"LAST"};
860 if(not defined $dest) {
861 print "... no known parent\n" if $opt_v;
863 print "Writing to refs/heads/$dest\n" if $opt_v;
864 open(C
,">$git_dir/refs/heads/$dest") and
865 print C
("$cid\n") and
867 or die "Cannot write branch $dest for update: $!\n";
871 $last_rev = "-" if %$changed_paths;
872 # the tag was 'complex', i.e. did not refer to a "real" revision
874 $dest =~ tr/_/\./ if $opt_u;
876 system('git-tag', '-f', $dest, $cid) == 0
877 or die "Cannot create tag $dest: $!\n";
879 print "Created tag '$dest' on '$branch'\n" if $opt_v;
881 $branches{$branch}{"LAST"} = $cid;
882 $branches{$branch}{$revision} = $cid;
884 print BRANCHES
"$revision $branch $cid\n";
885 print "DONE: $revision $dest $cid\n" if $opt_v;
889 # Recursive use of the SVN connection does not work
892 my ($changed_paths, $revision, $author, $date, $message, $pool) = @_;
894 while(my($path,$action) = each %$changed_paths) {
895 $p{$path} = [ $action->action,$action->copyfrom_path, $action->copyfrom_rev, $path ];
897 $changed_paths = \
%p;
904 while(my($path,$action) = each %$changed_paths) {
905 ($branch,$path) = split_path
($revision,$path);
906 next if not defined $branch;
907 next if not defined $path;
908 $done{$branch}{$path} = $action;
910 while(($branch,$changed_paths) = each %done) {
911 commit
($branch, $changed_paths, $revision, $author, $date, $message);
915 $opt_l = $svn->{'maxrev'} if not defined $opt_l or $opt_l > $svn->{'maxrev'};
917 if ($opt_l < $current_rev) {
918 print "Up to date: no new revisions to fetch!\n" if $opt_v;
919 unlink("$git_dir/SVN2GIT_HEAD");
923 print "Processing from $current_rev to $opt_l ...\n" if $opt_v;
926 my $to_rev = $current_rev - 1;
928 while ($to_rev < $opt_l) {
929 $from_rev = $to_rev + 1;
930 $to_rev = $from_rev + $repack_after;
931 $to_rev = $opt_l if $opt_l < $to_rev;
932 print "Fetching from $from_rev to $to_rev ...\n" if $opt_v;
933 my $pool=SVN
::Pool
->new;
934 $svn->{'svn'}->get_log("/",$from_rev,$to_rev,0,1,1,\
&commit_all
,$pool);
937 die "Fork: $!\n" unless defined $pid;
939 exec("git-repack", "-d")
940 or die "Cannot repack: $!\n";
948 if (defined $orig_git_index) {
949 $ENV{GIT_INDEX_FILE
} = $orig_git_index;
951 delete $ENV{GIT_INDEX_FILE
};
954 # Now switch back to the branch we were in before all of this happened
956 print "DONE\n" if $opt_v and (not defined $opt_l or $opt_l > 0);
957 system("cp","$git_dir/refs/heads/$opt_o","$git_dir/refs/heads/master")
960 system('git-read-tree', '-m', '-u', 'SVN2GIT_HEAD', 'HEAD');
961 die "read-tree failed: $?\n" if $?
;
964 $orig_branch = "master";
965 print "DONE; creating $orig_branch branch\n" if $opt_v and (not defined $opt_l or $opt_l > 0);
966 system("cp","$git_dir/refs/heads/$opt_o","$git_dir/refs/heads/master")
967 unless -f
"$git_dir/refs/heads/master";
968 system('git-update-ref', 'HEAD', "$orig_branch");
970 system('git checkout');
971 die "checkout failed: $?\n" if $?
;
974 unlink("$git_dir/SVN2GIT_HEAD");