Showing posts with label svn. Show all posts
Showing posts with label svn. Show all posts

Thursday, December 11, 2014

resolving svn confilict

http://www.tutorialspoint.com/svn/svn_resolve_conflicts.htm

Monday, November 12, 2012

svn list logs between two tags

http://www.bernzilla.com/item.php?id=613

In short:

svn log -v --stop-on-copy file:///dev/svn/tags/MY_FIRST_TAG

(get r1)

svn log -v --stop-on-copy file:///dev/svn/tags/MY_SECOND_TAG
(get r2)


svn log -v -r42:79 file:///dev/svn/trunk
(r42 is r1, 79 is r2).

Wednesday, November 16, 2011

Find the URL of a svn repo from a Windows folder using tortoiseSVN

choose svn-> switch

Friday, September 4, 2009

SVN usage

setup, email notification, cvs:
http://www.51testing.com/?uid-75198-action-viewspace-itemid-114376
svn book:
http://svnbook.red-bean.com/

Sendmail problem:
When I use sendmail on ubuntu server, it reports an error 67 (or 66). From the /var/log/mail.log, it says cannot qualify my own hostname. Finally, I found out the /etc/hosts file is not correct. I put the real IP, host name and domain name in that file (not only 127.0.0.1 one). Then it works.