From: Paolo Bonzini Date: Sun, 16 Mar 2008 19:00:21 +0000 (+0100) Subject: git-cvsserver: handle change type T X-Git-Tag: v1.5.5-rc3~5^2 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=9027efed47ba930382baa8051f451235be12fa63;p=git.git git-cvsserver: handle change type T git-cvsserver does not support changes of type T (file type change, e.g. symlink->real file). This patch treats them the same as changes of type M. Signed-off-by: Junio C Hamano --- diff --git a/git-cvsserver.perl b/git-cvsserver.perl index 7f632af20..97fa39398 100755 --- a/git-cvsserver.perl +++ b/git-cvsserver.perl @@ -2633,7 +2633,7 @@ sub update }; $self->insert_rev($name, $head->{$name}{revision}, $hash, $commit->{hash}, $commit->{date}, $commit->{author}, $git_perms); } - elsif ( $change eq "M" ) + elsif ( $change eq "M" || $change eq "T" ) { #$log->debug("MODIFIED $name"); $head->{$name} = {