Difference between revisions of "Subversion Notes"

From PeformIQ Upgrade
Jump to navigation Jump to search
Line 9: Line 9:


=Notes=
=Notes=
==High Level==


* [http://svnbook.red-bean.com/en/1.0/svn-book.html Subversion Book]
* [http://svnbook.red-bean.com/en/1.0/svn-book.html Subversion Book]
==Branches, Tags and Merging==
* [http://svnbook.red-bean.com/en/1.1/ch04s06.html Tags]
* [http://svnbook.red-bean.com/en/1.1/ch04s06.html Tags]
* [http://svnbook.red-bean.com/en/1.1/ch04s07.html Branching and Merging]
* [http://svnbook.red-bean.com/en/1.1/ch04s07.html Branching and Merging]
Line 18: Line 23:
* [http://confluence.atlassian.com/display/FISHEYE/How+Tags+Work+in+Subversion How Tags Work in Subversion (Confluence!)]
* [http://confluence.atlassian.com/display/FISHEYE/How+Tags+Work+in+Subversion How Tags Work in Subversion (Confluence!)]
* [http://www.visual-paradigm.com/highlight/svnbranch.jsp Branch and Tag Support in Subversion]
* [http://www.visual-paradigm.com/highlight/svnbranch.jsp Branch and Tag Support in Subversion]


==External links==
==External links==

Revision as of 13:39, 16 July 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.

Notes

High Level

Branches, Tags and Merging

External links

Processes

Initializing a New Repository

$ svnadmin create /path/to/repos

References