Skip to content

Commit

Permalink
Merge branch 'pb/cvsserver'
Browse files Browse the repository at this point in the history
* pb/cvsserver:
  git-cvsserver: handle change type T
  • Loading branch information
Junio C Hamano committed Apr 2, 2008
2 parents 22e885e + 9027efe commit e0efa03
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion git-cvsserver.perl
Original file line number Diff line number Diff line change
Expand Up @@ -2707,7 +2707,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} = {
Expand Down

0 comments on commit e0efa03

Please sign in to comment.