Add mention of centralized vcs to svn article (#22826)

Add a small section to the Subversion article discussing it as a well-known example of a centralized vcs.
pull/22844/head^2
Ariel Teague 2018-11-20 17:51:57 -06:00 committed by Manish Giri
parent 8cc39cb957
commit 11ed97e860
1 changed files with 4 additions and 0 deletions

View File

@ -4,9 +4,13 @@ title: Apache Subversion
## Apache Subversion
Apache Subversion is a software versioning and revision control system distributed as open source under the [Apache License](https://en.wikipedia.org/wiki/Apache_License). It is used to maintain current and historical versions of files such as source code, web pages and documentation.
Subversion (often abbreviated 'svn') is arguably the most well-known example of a centralized [version control system](https://en.wikipedia.org/wiki/Version_control). In a centralized system, there is generally considered one master repository that all developers pull and commit to. As such, frequent pulling and commiting as well as communication between developers is extremely important when working with svn.
### Alternatives to Subversion
* [Git](https://en.wikipedia.org/wiki/Git)
* [GNU Bazaar](https://en.wikipedia.org/wiki/GNU_Bazaar)
* [CVS](https://en.wikipedia.org/wiki/Concurrent_Versions_System)
For downloads and documentation, visit [Apache Subversion official site](https://subversion.apache.org)