Concurrent Versions System
From Just Solve the File Format Problem
(Difference between revisions)
Dan Tobias (Talk | contribs) (→Links) |
|||
(One intermediate revision 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 12: | Line 14: | ||
* [http://cvsnt.org/manual2/html/Repository-storage.html How data is stored in the repository] | * [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] | * [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.