En Diciembre de 2006, Sourceforge agrego un nuevo método de acceso hacia los repositorios SVN de los proyectos hospedados, debido a misteriosos problemas:
( 2006-12-01 06:50:42 – Project Subversion (SVN) Service ) As of 2006-11-31 the Subversion access method has been changed to resolve a number of problems relating to the previous Subversion access method. This new method uses the same data as the old, it just provides a less trouble-prone method of access. All users of the old access method (https://svn.sourceforge.net/svnroot/PROJECTNAME) should switch to the new access method immediately. Instructions for doing so can be found here: https://sourceforge.net/docs/E09#notice . A timetable for deprecating the old access method has not been set yet, but you should update all scripts and other programs to use this new method immediately to ensure future functionality. The old ViewVC URLs are currently being rewritten to ensure they function into the future.
Ahora según informan en el boletín de SourceForge, el viejo método de acceso al SVN será eliminado a partir del 28 de Junio, y por tanto cualquier script o repositorio que lo use dejará de funcionar.
Si has trabajado con algún repositorio SVN en SourceForge desde antes de Diciembre de 2006 es probable que aún uses el viejo método de acceso, será mejor que lo actualices para no llevarte sorpresas. Según está explicado en Sourceforge, todo lo que debe hacer es:
- Ejecutar
svn info
en el raíz del repositorio - Si la URL es similar a:
https://svn.sourceforge.net/svnroot/PROJECTNAME/trunk
entonces - debes ejecutar:
svn switch --relocate https://svn.sourceforge.net/svnroot/PROJECTNAME/trunk https://PROJECTNAME.svn.sourceforge.net/svnroot/PROJECTNAME/trunk
que putas??? se van para git tambien o que onda?
se van para CVS xD
Según Linus Torvals es preferible usar parches y tarballs a usar SVN o CVS y en sus palabras “If you like using cvs, you should be in some kind of mental institution” por eso anda dandole duro a GIT
GIT es para proyectos mucho mayores con gente trabajando todo el tiempo sobre el repositorio. Para los que si escribimos código GPL y queremos para saber quien hizo que, cuando y donde a modo de archivo historico, CVS o Subversion son suficientes.