Version Controlled Repository
(Redirected from Repository (Version Control))
Jump to navigation
Jump to search
A Version Controlled Repository is a repository/data base of source code.
- Example(s):
- Scikit-Learn's repo [1].
- ...
- See: Software Repository, Server (Computing), Revision Control, Metadata, Git (Software), Concurrent_Versions_System, Perforce.
References
2020
- (Wikipedia, 2020) ⇒ https://en.wikipedia.org/wiki/Repository_(version_control) Retrieved:2020-10-2.
- In revision control systems, a repository is a data structure that stores metadata for a set of files or directory structure. Depending on whether the version control system in use is distributed like (Git or Mercurial) or centralized like (Subversion, CVS, or Perforce), the whole set of information in the repository may be duplicated on every user's system or may be maintained on a single server. Some of the metadata that a repository contains includes, among other things:
- A historical record of changes in the repository.
- A set of commit objects.
- A set of references to commit objects, called heads.
- In revision control systems, a repository is a data structure that stores metadata for a set of files or directory structure. Depending on whether the version control system in use is distributed like (Git or Mercurial) or centralized like (Subversion, CVS, or Perforce), the whole set of information in the repository may be duplicated on every user's system or may be maintained on a single server. Some of the metadata that a repository contains includes, among other things: