git-cvsimport-scripton commit git-cvsimport-script: leave working directory alone. (2eb6d82)
   1#!/usr/bin/perl -w
   2
   3# This tool is copyright (c) 2005, Matthias Urlichs.
   4# It is released under the Gnu Public License, version 2.
   5#
   6# The basic idea is to aggregate CVS check-ins into related changes.
   7# Fortunately, "cvsps" does that for us; all we have to do is to parse
   8# its output.
   9#
  10# Checking out the files is done by a single long-running CVS connection
  11# / server process.
  12#
  13# The head revision is on branch "origin" by default.
  14# You can change that with the '-o' option.
  15
  16use strict;
  17use warnings;
  18use Getopt::Std;
  19use File::Path qw(mkpath);
  20use File::Basename qw(basename dirname);
  21use Time::Local;
  22use IO::Socket;
  23use IO::Pipe;
  24use POSIX qw(strftime dup2);
  25
  26$SIG{'PIPE'}="IGNORE";
  27$ENV{'TZ'}="UTC";
  28
  29our($opt_h,$opt_o,$opt_v,$opt_d,$opt_p,$opt_C);
  30
  31sub usage() {
  32        print STDERR <<END;
  33Usage: ${\basename $0}     # fetch/update GIT from CVS
  34           [ -o branch-for-HEAD ] [ -h ] [ -v ] [ -d CVSROOT ]
  35       [ -p opts-for-cvsps ] [ -C GIT_repository ]
  36       [ CVS_module ]
  37END
  38        exit(1);
  39}
  40
  41getopts("hqvo:d:p:C:") or usage();
  42usage if $opt_h;
  43
  44@ARGV <= 1 or usage();
  45
  46if($opt_d) {
  47        $ENV{"CVSROOT"} = $opt_d;
  48} elsif(-f 'CVS/Root') {
  49        open my $f, '<', 'CVS/Root' or die 'Failed to open CVS/Root';
  50        $opt_d = <$f>;
  51        chomp $opt_d;
  52        close $f;
  53        $ENV{"CVSROOT"} = $opt_d;
  54} elsif($ENV{"CVSROOT"}) {
  55        $opt_d = $ENV{"CVSROOT"};
  56} else {
  57        die "CVSROOT needs to be set";
  58}
  59$opt_o ||= "origin";
  60my $git_tree = $opt_C;
  61$git_tree ||= ".";
  62
  63my $cvs_tree;
  64if ($#ARGV == 0) {
  65        $cvs_tree = $ARGV[0];
  66} elsif (-f 'CVS/Repository') {
  67        open my $f, '<', 'CVS/Repository' or 
  68            die 'Failed to open CVS/Repository';
  69        $cvs_tree = <$f>;
  70        chomp $cvs_tree;
  71        close $f
  72} else {
  73        usage();
  74}
  75
  76select(STDERR); $|=1; select(STDOUT);
  77
  78
  79package CVSconn;
  80# Basic CVS dialog.
  81# We're only interested in connecting and downloading, so ...
  82
  83use File::Spec;
  84use File::Temp qw(tempfile);
  85use POSIX qw(strftime dup2);
  86
  87sub new {
  88        my($what,$repo,$subdir) = @_;
  89        $what=ref($what) if ref($what);
  90
  91        my $self = {};
  92        $self->{'buffer'} = "";
  93        bless($self,$what);
  94
  95        $repo =~ s#/+$##;
  96        $self->{'fullrep'} = $repo;
  97        $self->conn();
  98
  99        $self->{'subdir'} = $subdir;
 100        $self->{'lines'} = undef;
 101
 102        return $self;
 103}
 104
 105sub conn {
 106        my $self = shift;
 107        my $repo = $self->{'fullrep'};
 108        if($repo =~ s/^:pserver:(?:(.*?)(?::(.*?))?@)?([^:\/]*)(?::(\d*))?//) {
 109                my($user,$pass,$serv,$port) = ($1,$2,$3,$4);
 110                $user="anonymous" unless defined $user;
 111                my $rr2 = "-";
 112                unless($port) {
 113                        $rr2 = ":pserver:$user\@$serv:$repo";
 114                        $port=2401;
 115                }
 116                my $rr = ":pserver:$user\@$serv:$port$repo";
 117
 118                unless($pass) {
 119                        open(H,$ENV{'HOME'}."/.cvspass") and do {
 120                                # :pserver:cvs@mea.tmt.tele.fi:/cvsroot/zmailer Ah<Z
 121                                while(<H>) {
 122                                        chomp;
 123                                        s/^\/\d+\s+//;
 124                                        my ($w,$p) = split(/\s/,$_,2);
 125                                        if($w eq $rr or $w eq $rr2) {
 126                                                $pass = $p;
 127                                                last;
 128                                        }
 129                                }
 130                        };
 131                }
 132                $pass="A" unless $pass;
 133
 134                my $s = IO::Socket::INET->new(PeerHost => $serv, PeerPort => $port);
 135                die "Socket to $serv: $!\n" unless defined $s;
 136                $s->write("BEGIN AUTH REQUEST\n$repo\n$user\n$pass\nEND AUTH REQUEST\n")
 137                        or die "Write to $serv: $!\n";
 138                $s->flush();
 139
 140                my $rep = <$s>;
 141
 142                if($rep ne "I LOVE YOU\n") {
 143                        $rep="<unknown>" unless $rep;
 144                        die "AuthReply: $rep\n";
 145                }
 146                $self->{'socketo'} = $s;
 147                $self->{'socketi'} = $s;
 148        } else { # local or ext: Fork off our own cvs server.
 149                my $pr = IO::Pipe->new();
 150                my $pw = IO::Pipe->new();
 151                my $pid = fork();
 152                die "Fork: $!\n" unless defined $pid;
 153                my $cvs = 'cvs';
 154                $cvs = $ENV{CVS_SERVER} if exists $ENV{CVS_SERVER};
 155                my $rsh = 'rsh';
 156                $rsh = $ENV{CVS_RSH} if exists $ENV{CVS_RSH};
 157
 158                my @cvs = ($cvs, 'server');
 159                my ($local, $user, $host);
 160                $local = $repo =~ s/:local://;
 161                if (!$local) {
 162                    $repo =~ s/:ext://;
 163                    $local = !($repo =~ s/^(?:([^\@:]+)\@)?([^:]+)://);
 164                    ($user, $host) = ($1, $2);
 165                }
 166                if (!$local) {
 167                    if ($user) {
 168                        unshift @cvs, $rsh, '-l', $user, $host;
 169                    } else {
 170                        unshift @cvs, $rsh, $host;
 171                    }
 172                }
 173
 174                unless($pid) {
 175                        $pr->writer();
 176                        $pw->reader();
 177                        dup2($pw->fileno(),0);
 178                        dup2($pr->fileno(),1);
 179                        $pr->close();
 180                        $pw->close();
 181                        exec(@cvs);
 182                }
 183                $pw->writer();
 184                $pr->reader();
 185                $self->{'socketo'} = $pw;
 186                $self->{'socketi'} = $pr;
 187        }
 188        $self->{'socketo'}->write("Root $repo\n");
 189
 190        # Trial and error says that this probably is the minimum set
 191        $self->{'socketo'}->write("Valid-responses ok error Valid-requests Mode M Mbinary E F Checked-in Created Updated Merged Removed\n");
 192
 193        $self->{'socketo'}->write("valid-requests\n");
 194        $self->{'socketo'}->flush();
 195
 196        chomp(my $rep=$self->readline());
 197        if($rep !~ s/^Valid-requests\s*//) {
 198                $rep="<unknown>" unless $rep;
 199                die "Expected Valid-requests from server, but got: $rep\n";
 200        }
 201        chomp(my $res=$self->readline());
 202        die "validReply: $res\n" if $res ne "ok";
 203
 204        $self->{'socketo'}->write("UseUnchanged\n") if $rep =~ /\bUseUnchanged\b/;
 205        $self->{'repo'} = $repo;
 206}
 207
 208sub readline {
 209        my($self) = @_;
 210        return $self->{'socketi'}->getline();
 211}
 212
 213sub _file {
 214        # Request a file with a given revision.
 215        # Trial and error says this is a good way to do it. :-/
 216        my($self,$fn,$rev) = @_;
 217        $self->{'socketo'}->write("Argument -N\n") or return undef;
 218        $self->{'socketo'}->write("Argument -P\n") or return undef;
 219        # $self->{'socketo'}->write("Argument -ko\n") or return undef;
 220        # -ko: Linus' version doesn't use it
 221        $self->{'socketo'}->write("Argument -r\n") or return undef;
 222        $self->{'socketo'}->write("Argument $rev\n") or return undef;
 223        $self->{'socketo'}->write("Argument --\n") or return undef;
 224        $self->{'socketo'}->write("Argument $self->{'subdir'}/$fn\n") or return undef;
 225        $self->{'socketo'}->write("Directory .\n") or return undef;
 226        $self->{'socketo'}->write("$self->{'repo'}\n") or return undef;
 227        # $self->{'socketo'}->write("Sticky T1.0\n") or return undef;
 228        $self->{'socketo'}->write("co\n") or return undef;
 229        $self->{'socketo'}->flush() or return undef;
 230        $self->{'lines'} = 0;
 231        return 1;
 232}
 233sub _line {
 234        # Read a line from the server.
 235        # ... except that 'line' may be an entire file. ;-)
 236        my($self, $fh) = @_;
 237        die "Not in lines" unless defined $self->{'lines'};
 238
 239        my $line;
 240        my $res=0;
 241        while(defined($line = $self->readline())) {
 242                # M U gnupg-cvs-rep/AUTHORS
 243                # Updated gnupg-cvs-rep/
 244                # /daten/src/rsync/gnupg-cvs-rep/AUTHORS
 245                # /AUTHORS/1.1///T1.1
 246                # u=rw,g=rw,o=rw
 247                # 0
 248                # ok
 249
 250                if($line =~ s/^(?:Created|Updated) //) {
 251                        $line = $self->readline(); # path
 252                        $line = $self->readline(); # Entries line
 253                        my $mode = $self->readline(); chomp $mode;
 254                        $self->{'mode'} = $mode;
 255                        defined (my $cnt = $self->readline())
 256                                or die "EOF from server after 'Changed'\n";
 257                        chomp $cnt;
 258                        die "Duh: Filesize $cnt" if $cnt !~ /^\d+$/;
 259                        $line="";
 260                        $res=0;
 261                        while($cnt) {
 262                                my $buf;
 263                                my $num = $self->{'socketi'}->read($buf,$cnt);
 264                                die "Server: Filesize $cnt: $num: $!\n" if not defined $num or $num<=0;
 265                                print $fh $buf;
 266                                $res += $num;
 267                                $cnt -= $num;
 268                        }
 269                } elsif($line =~ s/^ //) {
 270                        print $fh $line;
 271                        $res += length($line);
 272                } elsif($line =~ /^M\b/) {
 273                        # output, do nothing
 274                } elsif($line =~ /^Mbinary\b/) {
 275                        my $cnt;
 276                        die "EOF from server after 'Mbinary'" unless defined ($cnt = $self->readline());
 277                        chomp $cnt;
 278                        die "Duh: Mbinary $cnt" if $cnt !~ /^\d+$/ or $cnt<1;
 279                        $line="";
 280                        while($cnt) {
 281                                my $buf;
 282                                my $num = $self->{'socketi'}->read($buf,$cnt);
 283                                die "S: Mbinary $cnt: $num: $!\n" if not defined $num or $num<=0;
 284                                print $fh $buf;
 285                                $res += $num;
 286                                $cnt -= $num;
 287                        }
 288                } else {
 289                        chomp $line;
 290                        if($line eq "ok") {
 291                                # print STDERR "S: ok (".length($res).")\n";
 292                                return $res;
 293                        } elsif($line =~ s/^E //) {
 294                                # print STDERR "S: $line\n";
 295                        } else {
 296                                die "Unknown: $line\n";
 297                        }
 298                }
 299        }
 300}
 301sub file {
 302        my($self,$fn,$rev) = @_;
 303        my $res;
 304
 305        my ($fh, $name) = tempfile('gitcvs.XXXXXX', 
 306                    DIR => File::Spec->tmpdir(), UNLINK => 1);
 307
 308        $self->_file($fn,$rev) and $res = $self->_line($fh);
 309
 310        if (!defined $res) {
 311            # retry
 312            $self->conn();
 313            $self->_file($fn,$rev)
 314                    or die "No file command send\n";
 315            $res = $self->_line($fh);
 316            die "No input: $fn $rev\n" unless defined $res;
 317        }
 318
 319        return ($name, $res);
 320}
 321
 322
 323package main;
 324
 325my $cvs = CVSconn->new($opt_d, $cvs_tree);
 326
 327
 328sub pdate($) {
 329        my($d) = @_;
 330        m#(\d{2,4})/(\d\d)/(\d\d)\s(\d\d):(\d\d)(?::(\d\d))?#
 331                or die "Unparseable date: $d\n";
 332        my $y=$1; $y-=1900 if $y>1900;
 333        return timegm($6||0,$5,$4,$3,$2-1,$y);
 334}
 335
 336sub pmode($) {
 337        my($mode) = @_;
 338        my $m = 0;
 339        my $mm = 0;
 340        my $um = 0;
 341        for my $x(split(//,$mode)) {
 342                if($x eq ",") {
 343                        $m |= $mm&$um;
 344                        $mm = 0;
 345                        $um = 0;
 346                } elsif($x eq "u") { $um |= 0700;
 347                } elsif($x eq "g") { $um |= 0070;
 348                } elsif($x eq "o") { $um |= 0007;
 349                } elsif($x eq "r") { $mm |= 0444;
 350                } elsif($x eq "w") { $mm |= 0222;
 351                } elsif($x eq "x") { $mm |= 0111;
 352                } elsif($x eq "=") { # do nothing
 353                } else { die "Unknown mode: $mode\n";
 354                }
 355        }
 356        $m |= $mm&$um;
 357        return $m;
 358}
 359
 360my $tmpcv = "/var/cache/cvs";
 361
 362sub getwd() {
 363        my $pwd = `pwd`;
 364        chomp $pwd;
 365        return $pwd;
 366}
 367
 368-d $git_tree
 369        or mkdir($git_tree,0777)
 370        or die "Could not create $git_tree: $!";
 371chdir($git_tree);
 372
 373my $last_branch = "";
 374my $orig_branch = "";
 375my %branch_date;
 376
 377my $git_dir = $ENV{"GIT_DIR"} || ".git";
 378$git_dir = getwd()."/".$git_dir unless $git_dir =~ m#^/#;
 379$ENV{"GIT_DIR"} = $git_dir;
 380unless(-d $git_dir) {
 381        system("git-init-db");
 382        die "Cannot init the GIT db at $git_tree: $?\n" if $?;
 383        system("git-read-tree");
 384        die "Cannot init an empty tree: $?\n" if $?;
 385
 386        $last_branch = $opt_o;
 387        $orig_branch = "";
 388} else {
 389        -f "$git_dir/refs/heads/$opt_o"
 390                or die "Branch '$opt_o' does not exist.\n".
 391                       "Either use the correct '-o branch' option,\n".
 392                       "or import to a new repository.\n";
 393
 394        $last_branch = basename(readlink("$git_dir/HEAD"));
 395        unless($last_branch) {
 396                warn "Cannot read the last branch name: $! -- assuming 'master'\n";
 397                $last_branch = "master";
 398        }
 399        $orig_branch = $last_branch;
 400
 401        # Get the last import timestamps
 402        opendir(D,"$git_dir/refs/heads");
 403        while(defined(my $head = readdir(D))) {
 404                next if $head =~ /^\./;
 405                open(F,"$git_dir/refs/heads/$head")
 406                        or die "Bad head branch: $head: $!\n";
 407                chomp(my $ftag = <F>);
 408                close(F);
 409                open(F,"git-cat-file commit $ftag |");
 410                while(<F>) {
 411                        next unless /^author\s.*\s(\d+)\s[-+]\d{4}$/;
 412                        $branch_date{$head} = $1;
 413                        last;
 414                }
 415                close(F);
 416        }
 417        closedir(D);
 418}
 419
 420-d $git_dir
 421        or die "Could not create git subdir ($git_dir).\n";
 422
 423my $pid = open(CVS,"-|");
 424die "Cannot fork: $!\n" unless defined $pid;
 425unless($pid) {
 426        my @opt;
 427        @opt = split(/,/,$opt_p) if defined $opt_p;
 428        exec("cvsps",@opt,"-x","-A","--cvs-direct",'--root',$opt_d,$cvs_tree);
 429        die "Could not start cvsps: $!\n";
 430}
 431
 432
 433## cvsps output:
 434#---------------------
 435#PatchSet 314
 436#Date: 1999/09/18 13:03:59
 437#Author: wkoch
 438#Branch: STABLE-BRANCH-1-0
 439#Ancestor branch: HEAD
 440#Tag: (none)
 441#Log:
 442#    See ChangeLog: Sat Sep 18 13:03:28 CEST 1999  Werner Koch
 443#Members:
 444#       README:1.57->1.57.2.1
 445#       VERSION:1.96->1.96.2.1
 446#
 447#---------------------
 448
 449my $state = 0;
 450
 451my($patchset,$date,$author,$branch,$ancestor,$tag,$logmsg);
 452my(@old,@new);
 453my $commit = sub {
 454        my $pid;
 455        while(@old) {
 456                my @o2;
 457                if(@old > 55) {
 458                        @o2 = splice(@old,0,50);
 459                } else {
 460                        @o2 = @old;
 461                        @old = ();
 462                }
 463                system("git-update-cache","--force-remove","--",@o2);
 464                die "Cannot remove files: $?\n" if $?;
 465        }
 466        while(@new) {
 467                my @n2;
 468                if(@new > 12) {
 469                        @n2 = splice(@new,0,10);
 470                } else {
 471                        @n2 = @new;
 472                        @new = ();
 473                }
 474                system("git-update-cache","--add",
 475                        (map { ('--cacheinfo', @$_) } @n2));
 476                die "Cannot add files: $?\n" if $?;
 477        }
 478
 479        $pid = open(C,"-|");
 480        die "Cannot fork: $!" unless defined $pid;
 481        unless($pid) {
 482                exec("git-write-tree");
 483                die "Cannot exec git-write-tree: $!\n";
 484        }
 485        chomp(my $tree = <C>);
 486        length($tree) == 40
 487                or die "Cannot get tree id ($tree): $!\n";
 488        close(C)
 489                or die "Error running git-write-tree: $?\n";
 490        print "Tree ID $tree\n" if $opt_v;
 491
 492        my $parent = "";
 493        if(open(C,"$git_dir/refs/heads/$last_branch")) {
 494                chomp($parent = <C>);
 495                close(C);
 496                length($parent) == 40
 497                        or die "Cannot get parent id ($parent): $!\n";
 498                print "Parent ID $parent\n" if $opt_v;
 499        }
 500
 501        my $pr = IO::Pipe->new();
 502        my $pw = IO::Pipe->new();
 503        $pid = fork();
 504        die "Fork: $!\n" unless defined $pid;
 505        unless($pid) {
 506                $pr->writer();
 507                $pw->reader();
 508                dup2($pw->fileno(),0);
 509                dup2($pr->fileno(),1);
 510                $pr->close();
 511                $pw->close();
 512
 513                my @par = ();
 514                @par = ("-p",$parent) if $parent;
 515                exec("env",
 516                        "GIT_AUTHOR_NAME=$author",
 517                        "GIT_AUTHOR_EMAIL=$author",
 518                        "GIT_AUTHOR_DATE=".strftime("+0000 %Y-%m-%d %H:%M:%S",gmtime($date)),
 519                        "GIT_COMMITTER_NAME=$author",
 520                        "GIT_COMMITTER_EMAIL=$author",
 521                        "GIT_COMMITTER_DATE=".strftime("+0000 %Y-%m-%d %H:%M:%S",gmtime($date)),
 522                        "git-commit-tree", $tree,@par);
 523                die "Cannot exec git-commit-tree: $!\n";
 524        }
 525        $pw->writer();
 526        $pr->reader();
 527
 528        # compatibility with git2cvs
 529        substr($logmsg,32767) = "" if length($logmsg) > 32767;
 530        $logmsg =~ s/[\s\n]+\z//;
 531
 532        print $pw "$logmsg\n"
 533                or die "Error writing to git-commit-tree: $!\n";
 534        $pw->close();
 535
 536        print "Committed patch $patchset ($branch)\n" if $opt_v;
 537        chomp(my $cid = <$pr>);
 538        length($cid) == 40
 539                or die "Cannot get commit id ($cid): $!\n";
 540        print "Commit ID $cid\n" if $opt_v;
 541        $pr->close();
 542
 543        waitpid($pid,0);
 544        die "Error running git-commit-tree: $?\n" if $?;
 545
 546        open(C,">$git_dir/refs/heads/$branch")
 547                or die "Cannot open branch $branch for update: $!\n";
 548        print C "$cid\n"
 549                or die "Cannot write branch $branch for update: $!\n";
 550        close(C)
 551                or die "Cannot write branch $branch for update: $!\n";
 552
 553        if($tag) {
 554                open(C,">$git_dir/refs/tags/$tag")
 555                        or die "Cannot create tag $tag: $!\n";
 556                print C "$cid\n"
 557                        or die "Cannot write tag $branch: $!\n";
 558                close(C)
 559                        or die "Cannot write tag $branch: $!\n";
 560                print "Created tag '$tag' on '$branch'\n" if $opt_v;
 561        }
 562};
 563
 564while(<CVS>) {
 565        chomp;
 566        if($state == 0 and /^-+$/) {
 567                $state = 1;
 568        } elsif($state == 0) {
 569                $state = 1;
 570                redo;
 571        } elsif(($state==0 or $state==1) and s/^PatchSet\s+//) {
 572                $patchset = 0+$_;
 573                $state=2;
 574        } elsif($state == 2 and s/^Date:\s+//) {
 575                $date = pdate($_);
 576                unless($date) {
 577                        print STDERR "Could not parse date: $_\n";
 578                        $state=0;
 579                        next;
 580                }
 581                $state=3;
 582        } elsif($state == 3 and s/^Author:\s+//) {
 583                s/\s+$//;
 584                $author = $_;
 585                $state = 4;
 586        } elsif($state == 4 and s/^Branch:\s+//) {
 587                s/\s+$//;
 588                $branch = $_;
 589                $state = 5;
 590        } elsif($state == 5 and s/^Ancestor branch:\s+//) {
 591                s/\s+$//;
 592                $ancestor = $_;
 593                $ancestor = $opt_o if $ancestor eq "HEAD";
 594                $state = 6;
 595        } elsif($state == 5) {
 596                $ancestor = undef;
 597                $state = 6;
 598                redo;
 599        } elsif($state == 6 and s/^Tag:\s+//) {
 600                s/\s+$//;
 601                if($_ eq "(none)") {
 602                        $tag = undef;
 603                } else {
 604                        $tag = $_;
 605                }
 606                $state = 7;
 607        } elsif($state == 7 and /^Log:/) {
 608                $logmsg = "";
 609                $state = 8;
 610        } elsif($state == 8 and /^Members:/) {
 611                $branch = $opt_o if $branch eq "HEAD";
 612                if(defined $branch_date{$branch} and $branch_date{$branch} >= $date) {
 613                        # skip
 614                        print "skip patchset $patchset: $date before $branch_date{$branch}\n" if $opt_v;
 615                        $state = 11;
 616                        next;
 617                }
 618                if($ancestor) {
 619                        if(-f "$git_dir/refs/heads/$branch") {
 620                                print STDERR "Branch $branch already exists!\n";
 621                                $state=11;
 622                                next;
 623                        }
 624                        unless(open(H,"$git_dir/refs/heads/$ancestor")) {
 625                                print STDERR "Branch $ancestor does not exist!\n";
 626                                $state=11;
 627                                next;
 628                        }
 629                        chomp(my $id = <H>);
 630                        close(H);
 631                        unless(open(H,"> $git_dir/refs/heads/$branch")) {
 632                                print STDERR "Could not create branch $branch: $!\n";
 633                                $state=11;
 634                                next;
 635                        }
 636                        print H "$id\n"
 637                                or die "Could not write branch $branch: $!";
 638                        close(H)
 639                                or die "Could not write branch $branch: $!";
 640                }
 641                if(($ancestor || $branch) ne $last_branch) {
 642                        print "Switching from $last_branch to $branch\n" if $opt_v;
 643                        system("git-read-tree","-m","$last_branch","$branch");
 644                        die "read-tree failed: $?\n" if $?;
 645                }
 646                if($branch ne $last_branch) {
 647                        unlink("$git_dir/HEAD");
 648                        symlink("refs/heads/$branch","$git_dir/HEAD");
 649                        $last_branch = $branch;
 650                }
 651                $state = 9;
 652        } elsif($state == 8) {
 653                $logmsg .= "$_\n";
 654        } elsif($state == 9 and /^\s+(\S+):(INITIAL|\d(?:\.\d+)+)->(\d(?:\.\d+)+)\s*$/) {
 655#       VERSION:1.96->1.96.2.1
 656                my $init = ($2 eq "INITIAL");
 657                my $fn = $1;
 658                my $rev = $3;
 659                $fn =~ s#^/+##;
 660                my ($tmpname, $size) = $cvs->file($fn,$rev);
 661                print "".($init ? "New" : "Update")." $fn: $size bytes.\n" if $opt_v;
 662                open my $F, '-|', "git-write-blob $tmpname"
 663                        or die "Cannot create object: $!\n";
 664                my $sha = <$F>;
 665                chomp $sha;
 666                close $F;
 667                unlink($tmpname);
 668                my $mode = pmode($cvs->{'mode'});
 669                push(@new,[$mode, $sha, $fn]); # may be resurrected!
 670        } elsif($state == 9 and /^\s+(\S+):\d(?:\.\d+)+->(\d(?:\.\d+)+)\(DEAD\)\s*$/) {
 671                my $fn = $1;
 672                $fn =~ s#^/+##;
 673                push(@old,$fn);
 674        } elsif($state == 9 and /^\s*$/) {
 675                $state = 10;
 676        } elsif(($state == 9 or $state == 10) and /^-+$/) {
 677                &$commit();
 678                $state = 1;
 679        } elsif($state == 11 and /^-+$/) {
 680                $state = 1;
 681        } elsif(/^-+$/) { # end of unknown-line processing
 682                $state = 1;
 683        } elsif($state != 11) { # ignore stuff when skipping
 684                print "* UNKNOWN LINE * $_\n";
 685        }
 686}
 687&$commit() if $branch and $state != 11;
 688
 689# Now switch back to the branch we were in before all of this happened
 690if($orig_branch) {
 691        print "DONE; switching back to $orig_branch\n" if $opt_v;
 692} else {
 693        $orig_branch = "master";
 694        print "DONE; creating $orig_branch branch\n" if $opt_v;
 695        system("cp","$git_dir/refs/heads/$opt_o","$git_dir/refs/heads/master")
 696                unless -f "$git_dir/refs/heads/master";
 697}
 698
 699if ($orig_branch) {
 700        system("git-read-tree",$last_branch);
 701        die "read-tree failed: $?\n" if $?;
 702} else {
 703        system('git-read-tree', $orig_branch);
 704        die "read-tree failed: $?\n" if $?;
 705        system('git-checkout-cache', '-a');
 706        die "checkout-cache failed: $?\n" if $?;
 707}
 708
 709unlink("$git_dir/HEAD");
 710symlink("refs/heads/$orig_branch","$git_dir/HEAD");
 711