Can anyone recommend any software control packages (free), specifically for web development. something that we could install on our own server. We're building a number of websites each week and I'm finding myself fixing the same bugs over and over again.
I've done a bit of research, but found people are using a number of different packages and none of them seem to jump out.
Thanks, Stephen
Depending on your experience and needs you should check out Git, Mercurial or SVN. I've been using SVN for web apps for a few years but that doesn't have local repositories. SVN is simple to setup and use as are the others.
Mercurial is like SVN with local repositories (massive over simplification here).
Git is used by a lot of new open source projects and indeed some major ones.
If you have the time, you should really evaluate them all and find which fits your needs. If you just need simple version control and nothing fancy, then svn will fit the bill.
Though, for my own part I'm considering using Git and GitHub fairly soon and making the transtion.
Your question is a bit unclear. But to get a more clear image of what you might need I suggest you to read a bit about configuration management:
Software Configuration Management
If you are talking about CI (countinous integration) then have a look at Team City, they have free license as well. It is really good for build /version automation and unit testing. It also provides integration with popular VCS
精彩评论