Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

.cvspass file generation to configure hudson tool

Please help me in generating the .cvspass file to configure hudson tool .

like image 826
scott Avatar asked Jan 21 '23 13:01

scott


1 Answers

this is simple, run form commandline

cvs -d :pserver:login:password@host:/dir/ login

This create .cvspass for you.

OR

simple paste to hudson CVSROOT variable this:

:pserver:login:password@host:/dir/

This is with password, so you dont need to create .cvspass

like image 199
MariuszS Avatar answered Jan 28 '23 23:01

MariuszS