Difference between revisions of "Subversion Notes"
PeterHarding (talk | contribs) |
PeterHarding (talk | contribs) |
||
Line 7: | Line 7: | ||
* [http://en.wikipedia.org/wiki/Subversion_%28software%29 Wikipedia entry on Subversion] | * [http://en.wikipedia.org/wiki/Subversion_%28software%29 Wikipedia entry on Subversion] | ||
=Notes= | |||
* [http://svnbook.red-bean.com/en/1.0/svn-book.html Subversion Book] | |||
* [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://www.onlamp.com/pub/a/onlamp/2004/08/19/subversiontips.html Top 10 Subversion Tips for CVS Users] | |||
* [http://www.germane-software.com/~ser/R_n_R/subversion.html A Novices Tutorial on Subversion] | |||
* [http://www.linuxformat.co.uk/wiki/index.php/Subversion_-_Branches,_tags_and_mergers Branches, tags and mergers] | |||
* [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] | |||
==External links== | ==External links== |
Revision as of 14:38, 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
- Subversion Book
- Tags
- Branching and Merging
- Top 10 Subversion Tips for CVS Users
- A Novices Tutorial on Subversion
- Branches, tags and mergers
- How Tags Work in Subversion (Confluence!)
- Branch and Tag Support in Subversion
External links
- Official site
- Version Control with Subversion, an O'Reilly book available for free online
- Version control for non-programmers with Subversion
- DMOZ Notes on Subversion
- Merging and branching in Subversion 1.5 By John Ferguson Smart, JavaWorld.com.
- Introducing Subversion by Elliotte Harold
- http://ait.web.psi.ch/services/software_hosting/version_control/ar01s03.html
Processes
Initializing a New Repository
$ svnadmin create /path/to/repos