... _______________________________________________ Info-cvs mailing list Info-cvs@... http://mail.gnu.org/mailman/listinfo/info-cvs...
26570
Gordon Stone
gordon.stone@...
Dec 1, 2000 10:35 am
Andy McDonagh wrote on 28/11 ... I'm also looking for similar but from the lack of response, it looks like there may be none. Anyone replied off list, Andy? ...
26571
Arnaud De Timmerman
Arnaud.De.Timmerman@...
Dec 1, 2000 11:24 am
All, The doc of the protocol says : <snip> The pserver server listens on a port (in the current implementation, by having inetd call "cvs pserver") which...
26572
Graham Leggett
minfrin@...
Dec 1, 2000 11:55 am
... How would you get the cvs status? According to the docs it would seem "cvs import" is what I am looking for - what does import actually do that's different...
26573
Rafal Kedziorski
rkedziorski@...
Dec 1, 2000 1:38 pm
Hallo, we have three projects in our repository and want remove one of them. what is the best way to remove whole project from repository? cvs remove removes ...
26574
Rafal Kedziorski
rkedziorski@...
Dec 1, 2000 1:48 pm
Hallo, we have three projects in our repository and want remove one of them. what is the best way to remove whole project from repository? cvs remove removes ...
26575
Matthias Kranz
mskranz@...
Dec 1, 2000 2:02 pm
... You could remove it directly from the repository via rm -r $CVSROOT/<project-to-remove> If you have specified modules which contain parts of that directory...
26576
Donald Sharp
sharpd@...
Dec 1, 2000 2:17 pm
... cvs status | grep "unknown" # or some such.... ... import is for importing data to be placed on vendor branches. I would recommend using the add commit...
26577
ari gold
agold@...
Dec 1, 2000 2:23 pm
it has also worked for me like this: cvs update <filename> if the file exists in the repository itll put it in your directory... of course you have to be in...
26578
Laird Nelson
ljnelson@...
Dec 1, 2000 2:59 pm
... In short: parse <current directory>/CVS/Entries for the tag entry as described in http://www.cvshome.org/docs/manual/cvs_2.html#IDX39. Cheers, Laird -- W:...
26579
Donald Sharp
sharpd@...
Dec 1, 2000 3:08 pm
When the cvs diff command is run it attempts to return one of three status codes to main: 0 - files same 1 - files different 2 - Some sort of error has...
26580
Donald Sharp
sharpd@...
Dec 1, 2000 3:22 pm
Whoops I realized I didn't update the documentation. Attached patch fixes that small problem... donald Index: src/ChangeLog ...
26581
Noel L Yap
yap_noel@...
Dec 1, 2000 3:49 pm
The exit status of "cvs diff" is exactly the same as the exit status of "diff" (man diff for more info). Why not test the exit status itself: cvs diff blah if...
26582
Donald Sharp
sharpd@...
Dec 1, 2000 3:52 pm
It's not. cvs turns the return codes from the diff() function into useless information: from main.c( I'm adding in my comments ): /* call the diff() function...
26583
Larry Jones
larry.jones@...
Dec 1, 2000 4:07 pm
... There shouldn't be any space after :pserver: cvs -d :pserver:user@machine:/home/user/repository login -Larry Jones That gives me a FABULOUS idea. -- Calvin...
26584
David H. Thornley
David.Thornley@...
Dec 1, 2000 4:07 pm
... Assuming that VMS has a conforming C compiler, this is not a problem. The C system interprets both 0 and EXIT_SUCCESS as successful exits, and...
26585
Larry Jones
larry.jones@...
Dec 1, 2000 4:08 pm
... The server wants to see "BEGIN AUTH REQUEST\n", but the telnet protocol mandates that each line end with <CR><LF>, so it's really seeing "BEGIN AUTH...
26586
Noel L Yap
yap_noel@...
Dec 1, 2000 4:13 pm
I see. Sorry, I had misread your email. I agree with your comment that, ideally, cvs diff should exit with the same statuses (stati :-) as diff. I haven't...
26587
Donald Sharp
sharpd@...
Dec 1, 2000 4:25 pm
I actually tried to implement this first. But I gave up( for the time being ). There were two problems that I found: 1) error.c and main.c insist on...
26588
Stephen Rasku
stephen@...
Dec 1, 2000 4:33 pm
... There is no need to do this. Just do "cvs add" with no other arguments and it will add all new files. -- Stephen Rasku E-mail: stephen@... Senior...
26589
brendan.fitzpatrick@...
Dec 1, 2000 4:42 pm
Hello, Is there anyway for pserver to grant 'group' access to a user? I have several projects and would like to grant users access to different projects, an...
26590
Donald Sharp
sharpd@...
Dec 1, 2000 4:42 pm
... You missunderstand what I did. This has nothing to do with the c compiler. It has everything to do with what cvs returned as a exit code. The vms...
26591
Hanser, Kevin
kevin@...
Dec 1, 2000 4:44 pm
Ok, I've moved the CVS files from one server to the other, and set up the proper pserver stuff in the inetd.conf file... I've got the passwd file there and...
26592
Eugene Kramer
ekramer@...
Dec 1, 2000 4:46 pm
Nope, does not do the trick: boxster 7: ls CVS/ foo.src* boxster 8: touch adfad .adf werwe boxster 9: cvs add Usage: cvs add [-k rcs-kflag] [-m message]...
26593
Stephen Rasku
stephen@...
Dec 1, 2000 5:15 pm
... Are you running on Unix? If so, just use different Unix groups for different projects. -- Stephen Rasku E-mail: stephen@... Senior Software...
26594
Larry Jones
larry.jones@...
Dec 1, 2000 5:15 pm
... See "Trouble making a connection to a CVS server" in the manual. If you still have questions, see the archives of this list (www.egroups.com); this is...
26595
Larry Jones
larry.jones@...
Dec 1, 2000 5:16 pm
... That is ancient history and does not conform to the ANSI/ISO C standard which requires that 0 be interpreted as a successful exit status. The VMS C...
26596
David H. Thornley
David.Thornley@...
Dec 1, 2000 5:31 pm
... No, it has to do with what happens between the writing of the C program and the status return to the operating system. That is where the C compiler comes...
26597
Larry Jones
larry.jones@...
Dec 1, 2000 5:31 pm
... When pserver changes user, it picks up all the user's auxiliary groups (assuming your system support auxiliary groups). So just make each user a member of...
26598
Noel L Yap
yap_noel@...
Dec 1, 2000 5:34 pm
You might also want to look into file system ACLs (man getfacl or man setfacl for more info). Noel stephen@... on 2000.12.01 11:59:54 Please respond to...