Subversion: Difference between revisions

From DWIKI
No edit summary
 
(6 intermediate revisions by 2 users not shown)
Line 1: Line 1:
From the subversion book:
From the subversion book:
<blockquote>Subversion is a free/open-source version control system. That is, Subversion manages files and directories, and the changes made to them, over time. This allows you to recover older versions of your data, or examine the history of how your data changed. In this regard, many people think of a version control system as a sort of "time machine".
<blockquote>Subversion is a free/open-source version control system. That is, Subversion manages files and directories, and the changes made to them, over time. This allows you to recover older versions of your data, or examine the history of how your data changed. In this regard, many people think of a version control system as a sort of "time machine".
<br /><br />
Subversion can operate across networks, which allows it to be used by people on different computers. At some level, the ability for various people to modify and manage the same set of data from their respective locations fosters collaboration. Progress can occur more quickly without a single conduit through which all modifications must occur. And because the work is versioned, you need not fear that quality is the trade-off for losing that conduit—if some incorrect change is made to the data, just undo that change.
<br /><br />
Some version control systems are also software configuration management (SCM) systems. These systems are specifically tailored to manage trees of source code, and have many features that are specific to software development—such as natively understanding programming languages, or supplying tools for building software. Subversion, however, is not one of these systems. It is a general system that can be used to manage any collection of files. For you, those files might be source code—for others, anything from grocery shopping lists to digital video mixdowns and beyond.
</blockquote>


{|
----
|-
 
| [http://subversion.tigris.org/ http://subversion.tigris.org/] || Homepage
=Useful links=
|-
*[http://subversion.tigris.org/ Homepage]
| [http://svnbook.red-bean.com/ http://svnbook.red-bean.com/] || the subversion book
*[http://svnbook.red-bean.com/ The subversion book]
|-
*http://tortoisesvn.net/docs/release/TortoiseSVN_en/ch03.html
| [http://tortoisesvn.net/docs/release/TortoiseSVN_en/ch03.html http://tortoisesvn.net/docs/release/TortoiseSVN_en/ch03.html] || Setting up a subversion server
*[http://wiki.osuosl.org/display/LNX/Subversion+SVN+and++LDAP+and+Webdav Subversion and LDAP]
|}
 
=FAQ=
*http://subversion.tigris.org/project_faq.html

Latest revision as of 11:56, 3 December 2009

From the subversion book:

Subversion is a free/open-source version control system. That is, Subversion manages files and directories, and the changes made to them, over time. This allows you to recover older versions of your data, or examine the history of how your data changed. In this regard, many people think of a version control system as a sort of "time machine".


Useful links

FAQ