diff options
author | Junio C Hamano <junkio@cox.net> | 2006-03-01 22:27:06 -0800 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-03-01 22:27:06 -0800 |
commit | 0c1fc940eeae051e890304c40d1e66a478afadc8 (patch) | |
tree | 3b037e785aee0379a2c0dc22ddcb30bc39bd6bb8 | |
parent | b485db9896654b11c8a7bf64fd5cc3d0d8dc5b69 (diff) | |
parent | ec58db15a9e1d3377170c9839e509074a8202735 (diff) | |
download | git-0c1fc940eeae051e890304c40d1e66a478afadc8.tar.gz |
Merge branch 'ml/cvsserver' into next
* ml/cvsserver:
cvsserver: Eclipse compat -- now "compare with latest from HEAD" works
-rwxr-xr-x | git-cvsserver.perl | 27 |
1 files changed, 24 insertions, 3 deletions
diff --git a/git-cvsserver.perl b/git-cvsserver.perl index d641c037aa..7b3ba1b9de 100755 --- a/git-cvsserver.perl +++ b/git-cvsserver.perl @@ -714,8 +714,27 @@ sub req_update #$log->debug("Target revision is $meta->{revision}, current working revision is $wrev"); - # Files are up to date if the working copy and repo copy have the same revision, and the working copy is unmodified _and_ the user hasn't specified -C - next if ( defined ( $wrev ) and defined($meta->{revision}) and $wrev == $meta->{revision} and $state->{entries}{$filename}{unchanged} and not exists ( $state->{opt}{C} ) ); + # Files are up to date if the working copy and repo copy have the same revision, + # and the working copy is unmodified _and_ the user hasn't specified -C + next if ( defined ( $wrev ) + and defined($meta->{revision}) + and $wrev == $meta->{revision} + and $state->{entries}{$filename}{unchanged} + and not exists ( $state->{opt}{C} ) ); + + # If the working copy and repo copy have the same revision, + # but the working copy is modified, tell the client it's modified + if ( defined ( $wrev ) + and defined($meta->{revision}) + and $wrev == $meta->{revision} + and not exists ( $state->{opt}{C} ) ) + { + $log->info("Tell the client the file is modified"); + print "MT text U\n"; + print "MT fname $filename\n"; + print "MT newline\n"; + next; + } if ( $meta->{filehash} eq "deleted" ) { @@ -727,7 +746,8 @@ sub req_update print "Removed $dirpart\n"; print "$filepart\n"; } - elsif ( not defined ( $state->{entries}{$filename}{modified_hash} ) or $state->{entries}{$filename}{modified_hash} eq $oldmeta->{filehash} ) + elsif ( not defined ( $state->{entries}{$filename}{modified_hash} ) + or $state->{entries}{$filename}{modified_hash} eq $oldmeta->{filehash} ) { $log->info("Updating '$filename'"); # normal update, just send the new revision (either U=Update, or A=Add, or R=Remove) @@ -763,6 +783,7 @@ sub req_update # transmit file transmitfile($meta->{filehash}); } else { + $log->info("Updating '$filename'"); my ( $filepart, $dirpart ) = filenamesplit($meta->{name}); my $dir = tempdir( DIR => $TEMP_DIR, CLEANUP => 1 ) . "/"; |