To test what files would get changed or conflict when running an update:
With svn:
svn merge --dry-run -r BASE:HEAD .With cvs:
cvs -nq update -d
svnDry run update with svn and cvsSubmitted by sandip on Fri, 03/04/2011 - 17:04To test what files would get changed or conflict when running an update: With svn: svn merge --dry-run -r BASE:HEAD .With cvs: cvs -nq update -d»
SSL and subversion clientSubmitted by sandip on Mon, 02/07/2011 - 12:03Unlike web browsers, the CA root cert is not installed by default for svn clients. You would need to tell the client where to find it in order to trust the ssl cert. Reference: svnbook For GoDaddy signed certs, download their root certs available at: http://certificates.godaddy.com/repository You would need both the pem encoded gd-class2-root.crt and gd_intermediate.crt . Then in subversion client global settings, tell it the path to the certs: ssl-authority-files = /path/to/gd-class2-root.crt;/path/to/gd_intermediate.crtThis should then trust the ssl cert. »
svn checkout via shell scriptSubmitted by sandip on Mon, 03/30/2009 - 23:19Very often development servers only have self-signed certificate for ssl connection. I've recently had to create a script that would checkout from a https svn repository that would fail with "Server certificate verification failed: issuer is not trusted..." . Below is a workaround used to temporarily trust the certificate. svn --username $SVN_USER --password $SVN_PASS --no-auth-cache checkout ${REPO_URL}/${REPO_PATH} $REPO_PATH <<EOF 2>/dev/nullTrac and SVN install / configuration notes...Submitted by sandip on Thu, 01/10/2008 - 12:56The below notes is specifically for centos-4.6 : Installation:# rpm -ivh http://apt.sw.be/packages/rpmforge-release/rpmforge-release-0.3.6-1.el4.rf.i386.rpmInstantiating svn:# mkdir /var/www/svnInitial svn import:# mkdir -p /tmp/newsvn/{trunk,tags,branches}Instantiating trac:# mkdir /var/www/tracInstall trac plugins:# wget http://peak.telecommunity.com/dist/ez_setup.pytrac.ini conf setup:[trac]Apache trac conf setup:Alias /trac /var/www/tracApache subversion conf setup:<Location /svn>Trac privileges:# trac-admin /var/www/trac/project permission add admins TRAC_ADMINLogin as the admin user and setup Trac plugins, permissions etc... |
User loginRecent blog posts
Who's onlineThere are currently 0 users and 4 guests online.
|