From: Steven D'A. <st...@pe...> - 2011-05-01 01:28:15
|
John Henry wrote: > I can look into the distributed source control system as suggested. > > Right now, Subversion is working and works pretty good. Pythoncard is > currently hosted on CVS but I can't get CVSNT to work properly. We > should migrate to better system than CVS anyway. For what it is worth, the two popular open source distributed revision control systems are git and Mercurial (hg). The developers of Python itself are now using Mercurial, so you might lean more towards Mercurial. I do. Some Mercurial resources: http://hginit.com/index.html http://mercurial.selenic.com/wiki/Tutorial http://hgbook.red-bean.com/ For git, you can do your own googling :-P Source code hosting is available at (among others) Github, Bitbucket and Google Code. Github uses git (well duh *wink*) and is free for Open Source projects. https://github.com/ Bitbucket uses Mercurial, and is free for small projects: https://bitbucket.org/ and Google Code also offers free hosting and Mercurial: http://code.google.com/hosting/ -- Steven |