freeCodeCamp/guide/english/svn/index.md

17 lines
1.0 KiB
Markdown

---
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)