Skip to Main Content My Account Off-Campus Access Give 24/7 Chat Meet with a Librarian Directory Library Services Technical Support Submit a Digital Sign Give Newsletters Social Media

Research Data Management

Version Control

Version control is a method used to track file or file set changes over time so that you can recall older versions at a later time.

  • Version control records changes (additions, deletions, replacements) of individual files, tracks updates, and allows branching of projects that may be later integrated into the parent project.
  • File versioning can be as simple as using file naming conventions like suffixes *_v1, *v2, *vn, or you could use a version control software (VCS).
Version Control File Sharing Platforms
  • Box supports version history.
  • Microsoft 365 OneDrive includes a version history function that allows you to view and restore previous versions of a document.
  • Google Drive keeps track of each revision to the file with built-in version tracking and the ability to get back to earlier file version.
  • Open Science Framework (OSF) has built-in version control and retains all copies of a file added to OSF, and further provides access to versions of files stored on third-party storage providers. The wiki functionality also keeps a detailed log of all changes and who made them.
Version Control Software
  • Git is a distributed version control tool that can manage a development project's source code history. Git is the most common and widely accepted version control software, which you can run locally on your computer.
  • GitHub is a web-based service for Git repositories (i.e., groups of tracked files). GitHub is commonly used for managing and sharing different versions of code for programming projects, but it can be used just as effectively for version control of other types of files, such as text documents. GitHub has a huge open-source community.
  • GitLab is an open source software that provides a Git repository hosting service and collaborative revision control. GitLab has project management, issue tracking, and free private repository hosting.
  • Bitbucket is a web-based version control repository hosting service owned by Atlassian, for source code and development projects that use Git. Bitbucket tends to have mostly enterprise and business users.
  • Apache Subversion is a server-client software versioning and revision control system. Software developers use Subversion to maintain current and historical versions of files such as source code, web pages, and documentation.