Convert SVN Log to Windows TortoiseSVN Format

Convert svn log from command line output to windows TortoiseSVN format >> 转换 Continue reading
Posted in SVN| Tagged | Leave a comment

SVN Setting eol-style

When using SVN in team coding, we need the unified end of file descriptor for all the repository files. Usually it's LF(line-feed) which is the end of line char under linux. SVN has supportted this fe… Continue reading
Posted in SVN| Tagged , | Leave a comment

Version Control with SVN

1. Create trunk from proj_src(source code) : [codesyntax lang="bash"] $ mv /root/proj_src /home/projects/ $ cd /home/projects/ $ svn import proj_src svn://192.168.1.119/proj/trunk -m "create proj trun… Continue reading
Posted in SVN| Tagged | Leave a comment

Subversion Post Commit Hook

1. Create post-commit hook [codesyntax lang="bash" lines="no" container="pre" tab_width="4"] $ cd /data/svndata/hooks $ cp post-commit.tmpl post-commit $ chown kim:kim post-commit $ chmod a+x post-com… Continue reading
Posted in SVN| Tagged | 2 Comments

Subversion on Ubuntu Server

1. Environment Ubuntu Server 10.10 Subversion 1.6.6 2. Install Subversion [codesyntax lang="bash" lines="no" container="pre" tab_width="4"] $ su root $ apt-get install subversion [/codesyntax] 3. Loca… Continue reading
Posted in SVN| Tagged , | Leave a comment