Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

AuthReply: I HATE YOU response while using git cvsimport

Tags:

cvs2git

I am migrating from CVS to Git. I am trying the following command on Cygwin Terminal

$ git cvsimport -v -d :pserver:kashif.nazar@cvs-server:/cvsroot MyModule

but I am getting the following response.

AuthReply: I HATE YOU

Seems like this is an authentication issue.

Where am I going wrong?

like image 300
Kashif Nazar Avatar asked Mar 19 '23 21:03

Kashif Nazar


1 Answers

Log in via CVS first:

cvs -d :pserver:kashif.nazar@cvs-server:/cvsroot login

You'll need your pserver password (often it's just "guest" or an empty string).

like image 108
dlitz Avatar answered Jun 14 '23 02:06

dlitz