4

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?

Kashif Nazar
  • 20,775
  • 5
  • 29
  • 46
  • I think git just needs some candy. Don't take it personal... It happens to the best of us –  Aug 26 '20 at 22:44

1 Answers1

7

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).

Tobias Liefke
  • 8,637
  • 2
  • 41
  • 58
dlitz
  • 5,679
  • 3
  • 19
  • 13