summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: c49b260)
raw | patch | inline | side by side (parent: c49b260)
author | Frank Lichtenheld <frank@lichtenheld.de> | |
Tue, 13 Mar 2007 17:25:22 +0000 (18:25 +0100) | ||
committer | Junio C Hamano <junkio@cox.net> | |
Wed, 14 Mar 2007 09:09:32 +0000 (02:09 -0700) |
Submit some additional messages to the client on commit and update.
Inspired by the standard CVS server though a little more terse.
Signed-off-by: Frank Lichtenheld <frank@lichtenheld.de>
Signed-off-by: Junio C Hamano <junkio@cox.net>
Inspired by the standard CVS server though a little more terse.
Signed-off-by: Frank Lichtenheld <frank@lichtenheld.de>
Signed-off-by: Junio C Hamano <junkio@cox.net>
git-cvsserver.perl | patch | blob | history |
diff --git a/git-cvsserver.perl b/git-cvsserver.perl
index 65fcc840497fb44fd0bd843b6eedaab258d8b88f..f21f2f121fdafe0b657187e9881020644c338867 100755 (executable)
--- a/git-cvsserver.perl
+++ b/git-cvsserver.perl
# we need to merge with the local changes ( M=successful merge, C=conflict merge )
$log->info("Merging $file_local, $file_old, $file_new");
+ print "M Merging differences between 1.$oldmeta->{revision} and 1.$meta->{revision} into $filename\n";
$log->debug("Temporary directory for merge is $dir");
elsif ( $return == 1 )
{
$log->info("Merged with conflicts");
+ print "E cvs update: conflicts found in $filename\n";
print "M C $filename\n";
# Don't want to actually _DO_ the update if -n specified
if ( defined $meta->{filehash} && $meta->{filehash} eq "deleted" )
{
+ print "M new revision: delete\n";
print "Remove-entry $dirpart\n";
print "$filename\n";
} else {
+ if ($meta->{revision} == 1) {
+ print "M initial revision: 1.1\n";
+ } else {
+ print "M new revision: 1.$meta->{revision}\n";
+ }
print "Checked-in $dirpart\n";
print "$filename\n";
my $kopts = kopts_from_path($filepart);