Concurrent Versions System
From Just Solve the File Format Problem
(Difference between revisions)
Dan Tobias (Talk | contribs) (Created page with "{{FormatInfo |formattype=electronic |subcat=Development |released=1986 }} '''Concurrent Versions System''' (CVS) is an open-source revision control system for software develop...") |
|||
(2 intermediate revisions by one user not shown) | |||
Line 5: | Line 5: | ||
}} | }} | ||
'''Concurrent Versions System''' (CVS) is an open-source revision control system for software development, dating back to the 1980s (with the current CVS descending from a 1990 release of "version 1.0", though there were earlier versions with a different code base). It used to be very popular for open-source projects, though in more recent times [[Git]] is more popular. It is not to be confused with the CVS drug store chain, or with [[CSV]] files. | '''Concurrent Versions System''' (CVS) is an open-source revision control system for software development, dating back to the 1980s (with the current CVS descending from a 1990 release of "version 1.0", though there were earlier versions with a different code base). It used to be very popular for open-source projects, though in more recent times [[Git]] is more popular. It is not to be confused with the CVS drug store chain, or with [[CSV]] files. | ||
+ | |||
+ | CVS uses files with names ending in <code>,v</code>, which is not a normal file extension since it has a comma instead of a period in it. | ||
== Links == | == Links == | ||
Line 10: | Line 12: | ||
* [http://savannah.nongnu.org/projects/cvs Official site] | * [http://savannah.nongnu.org/projects/cvs Official site] | ||
* [http://ftp.gnu.org/non-gnu/cvs/source/feature/1.12.13/cederqvist-1.12.13.pdf Manual for version 1.12.13] | * [http://ftp.gnu.org/non-gnu/cvs/source/feature/1.12.13/cederqvist-1.12.13.pdf Manual for version 1.12.13] | ||
+ | * [http://cvsnt.org/manual2/html/Repository-storage.html How data is stored in the repository] | ||
+ | * [http://stackoverflow.com/questions/2267966/recovering-files-from-archive-of-cvs-v-files Recovering files from archive of CVS *,v files] | ||
+ | |||
+ | [[Category:File formats with too many extensions]] |
Latest revision as of 16:51, 6 April 2016
Concurrent Versions System (CVS) is an open-source revision control system for software development, dating back to the 1980s (with the current CVS descending from a 1990 release of "version 1.0", though there were earlier versions with a different code base). It used to be very popular for open-source projects, though in more recent times Git is more popular. It is not to be confused with the CVS drug store chain, or with CSV files.
CVS uses files with names ending in ,v
, which is not a normal file extension since it has a comma instead of a period in it.