Jump to content

Repository (version control)

From Wikipedia, the free encyclopedia

This is an old revision of this page, as edited by 50.53.1.33 (talk) at 23:09, 17 September 2016 (→‎References). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

In revision control systems, a repository[1] is an on-disk data structure which stores metadata for a set of files and/or directory structure. Depending on whether the version control system in use is distributed (for instance, Git or Mercurial) or centralized (Subversion or Perforce, for example), 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.

Storing changes

The main purpose of a repository is to store a set of files, as well as the history of changes made to those files.[2] Exactly how each revision control system handles storing those changes, however, differs greatly: for instance, Subversion has in the past relied on a database instance and has since moved to storing its changes directly on the filesystem.[3] These differences in methodology have generally led to diverse uses of revision control by different groups, depending on their needs.[4]

See also

References

  1. ^ "SVNBook". Retrieved 2012-04-20.
  2. ^ "Getting Started - About Version Control". Git SCM.
  3. ^ Ben Collins-Sussman; Brian W. Fitzpatrick; C. Michael Pilato (2011). "Chapter 5: Strategies for Repository Deployment". Version Control with Subversion: For Subversion 1.7. O'Reilly.
  4. ^ "Different approaches to source control branching". Stack Overflow. Retrieved 15 November 2014.