SVN
Submitted by Bram Schoenmakers on 25 March, 2008 - 22:48.
I wanted to check out a folder from the KDE Subversion repository as a git repository, so I used the git-svn tool to accomplish that. These were the steps I followed:
-
git svn init \
https://bram@svn.kde.org/home/kde/trunk/extragear/utils/rsibreak -
git svn fetch
But that didn't work out, I got the following error:
Submitted by Bram Schoenmakers on 23 November, 2007 - 12:05.
By default, when you start the SVN server, svnserve, it listens on a port via the IPv6 protocol. This means you cannot connect to the server when approaching it with a xxx.xxx.xxx.xxx (IPv4) address.
You can solve this by adding the following parameter to the svnserve call:
# svnserve --listen-host 0.0.0.0
You should supply this in the configuration file taking care of starting svnserve.