Difference between revisions of "Subversion Notes"

From PeformIQ Upgrade
Jump to navigation Jump to search
Line 13: Line 13:
*[http://svnbook.red-bean.com/ Version Control with Subversion], an [[O'Reilly Media|O'Reilly]] book available for free online
*[http://svnbook.red-bean.com/ Version Control with Subversion], an [[O'Reilly Media|O'Reilly]] book available for free online
*[http://software.newsforge.com/article.pl?sid=05/06/02/1454229&tid=130 Version control for non-programmers with Subversion]
*[http://software.newsforge.com/article.pl?sid=05/06/02/1454229&tid=130 Version control for non-programmers with Subversion]
*[http://www.dmoz.org/Computers/Software/Configuration_Management/Tools/Subversion/|Subversion]
*[http://www.dmoz.org/Computers/Software/Configuration_Management/Tools/Subversion/ Subversion]
*[http://www.javaworld.com/javaworld/jw-01-2008/jw-01-svnmerging.html Merging and branching in Subversion 1.5] By John Ferguson Smart, JavaWorld.com.
*[http://www.javaworld.com/javaworld/jw-01-2008/jw-01-svnmerging.html Merging and branching in Subversion 1.5] By John Ferguson Smart, JavaWorld.com.
*[http://www.ibm.com/developerworks/java/library/j-subversion/ Introducing Subversion] by Elliotte Harold
*[http://www.ibm.com/developerworks/java/library/j-subversion/ Introducing Subversion] by Elliotte Harold

Revision as of 19:43, 1 March 2008

Intro

Subversion (svn) is a version control system initiated in 2000 by CollabNet Inc. It is used to maintain current and historical versions of files such as source code, web pages, and documentation. Its goal was to be a mostly-compatible successor to the widely used Concurrent Versions System (cvs) and provide a mush more integrated support for versioning of binary blobs.

Subversion is used by many open source projects. Some well-known projects that use Subversion include: Apache Software Foundation, KDE, GNOME, Free Pascal, GCC, Python, Ruby, Samba and Mono. SourceForge.net and Tigris.org also provide Subversion hosting for their open source projects. Google Code and BountySource systems use it exclusively.

Subversion is released under the Apache License, making it free software.

External links

Processes

Initializing a New Repository

$ svnadmin create /path/to/repos

References