Friday, January 30, 2009

shell script notes

How to do or, add
<b><b><span class="__mozilla-findbar-search" style="padding: 0pt; background-color: yellow; color: black; display: inline; font-size: inherit;">if [</span> -f $dir/$file ] || [ -f $dir/$newfile ]; then<br /></b></b>

Debugging cruisecontrol

It is often handy to debug cruisecontrol using its console mode: service cruisecontrol console

If there are issues with your config.xml or any other problems that end up blocking the whole build queue, this is probably the only good way to debug.

also handy is the 22000 default port which provides a web-console

Monday, January 26, 2009

cvs commands:Notes

cvs commit -m "comment" files
the writers file maintains list of folks who can write
all config files are maintained in checkoutlist
cvs import <module name> <vendor tag>
<initial tag>
cvs add file -- always commit after adding

Labels in cvs
U-Updated
P-new files
M- for files you've
modified locally and not committed
C-for files you've updated locally,
and
that have conflict

editing (marking it) locking
cvs edit filename ; cvs editors filename->gives list of editors;cvs unedit
cvs admin -l filename;cvs admin -u filename

cvs delete;cvs commit
------------------
References:

http://www.linux.ie/articles/tutorials/cvs.php

http://www.linux.ie/articles/tutorials/continuingcvs.php

------------------