good apache-based code repository software?

Locked
Fjoggen
Posts: 23
Joined: Sat Aug 30, 2003 7:00 am

Post by Fjoggen »

That depends on the type of versioncontrol you are using. SVN or CVS?
SCDS_reyalP
Posts: 9
Joined: Fri Jan 25, 2002 8:00 am

Post by SCDS_reyalP »

Subversion is a very reasonable choice. It's free, crossplatform, stable, relatively easy to administer, and has an active community. There are a number of user friendly GUI based clients as well.

I'm not really sure what you mean by 'apache baseed' but subversion supports using apache to serve the data.

edit:
Guess I'm slow on the post button :icon28:
Fjoggen
Posts: 23
Joined: Sat Aug 30, 2003 7:00 am

Post by Fjoggen »

I will with out doubt recommend SVN (subversion), mostly because it supports binary files (pictures, etc..) and also because I use it not only for programing, but also to keep track of my configuration files and similar important files on my computer.

If you are looking for a easy and good tutorial/Internetbook of SVN, this is what you are looking for:
http://svnbook.red-bean.com/en/1.1/index.html

Where chapter 6 in this book will teach you how to mange and set up the server with apache supports:
http://svnbook.red-bean.com/en/1.0/ch06.html
Fjoggen
Posts: 23
Joined: Sat Aug 30, 2003 7:00 am

Post by Fjoggen »

SVN and CVS isn't something you can just install on your webserver like a forum or a content manager.
You must first check if your host have it installed on their system.
If you have shell access to your host you can type:

Code: Select all

svn --version
cvs --version
Or

Code: Select all

man cvs
man svn
If not send them an email and ask what they support.

As a side note you do not need apache to use SVN or CVS as most use ssl connections to download from their repositorys.
Locked