mirror of
https://github.com/git/git.git
synced 2025-01-23 07:53:37 +08:00
cvsserver: fix revision number during file adds
With this patch, cvs add / cvs commit echoes back to the client the correct file version (1.1) so that the file in the checkout is recognised as up-to-date. Signed-off-by: Martin Langhoff <martin@catalyst.net.nz> Signed-off-by: Junio C Hamano <junkio@cox.net>
This commit is contained in:
parent
49fb940e40
commit
3486595bf1
@ -1181,12 +1181,15 @@ sub req_ci
|
||||
$filename = filecleanup($filename);
|
||||
|
||||
my $meta = $updater->getmeta($filename);
|
||||
unless (defined $meta->{revision}) {
|
||||
$meta->{revision} = 1;
|
||||
}
|
||||
|
||||
my ( $filepart, $dirpart ) = filenamesplit($filename, 1);
|
||||
|
||||
$log->debug("Checked-in $dirpart : $filename");
|
||||
|
||||
if ( $meta->{filehash} eq "deleted" )
|
||||
if ( defined $meta->{filehash} && $meta->{filehash} eq "deleted" )
|
||||
{
|
||||
print "Remove-entry $dirpart\n";
|
||||
print "$filename\n";
|
||||
|
Loading…
Reference in New Issue
Block a user