Subversion update dry-run ..
Sep 16, 2009 in Subversion
From http://justaddwater.dk/2008/04/29/how-to-make-a-dry-run-with-svn-update/
svn merge –dry-run -r BASE:HEAD .
Also:
svn status -u
This command will not show conflicts .
Sep 16, 2009 in Subversion
From http://justaddwater.dk/2008/04/29/how-to-make-a-dry-run-with-svn-update/
svn merge –dry-run -r BASE:HEAD .
Also:
svn status -u
This command will not show conflicts .
Jun 26, 2009 in Config Manage, cvs
To check for cvs with pserver configuration:
service cvspserver
{
port = 2401
socket_type = stream
protocol = tcp
wait = no
user = root
passenv = PATH
server = /usr/local/bin/cvs
server_args = -f –allow-root=/opt/cvs pserver
}
$ cvs passwd -a user (it will ask for a password)
See http://devguy.com/fp/cfgmgmt/cvs/cvs_admin_nt.htm#pserver for more info.
Nov 20, 2008 in Apache, Config Manage
Fastest way to plug tomcat into apache httpd..
Change apache2.conf, add:
<Location /your_tomcat_app> ProxyPass ajp://your_host:8009/your_tomcat_app Order allow,deny allow from all </Location>
More notes on Hudson here:
http://suereth.blogspot.com/2008/08/ubuntu-dev-server-hudson.html
Hudson is here:
Jul 12, 2008 in Config Manage, cvs
To get the list of files included in
a particular cvs commit use this:
cvs -q log -SR -r@{commitid}
To get the list of files changed between
tags use this:
cvs -q rdiff -s -r TAG1 [-r TAG2] module
If TAG2 is omitted, the current version is used.
To get a list of files changed since “date”:
cvs history -c -a -D [date]
where [date] can be 2008-12-19 or 12/19/2008