Why Use Version Control?
Learning Objectives:
In this section, students will:
- Learn why we use version control
- Learn some basics of how version control works
- Learn about why we're using Git/GitHub in particular
Why use version control?
Work on any large, complex project and the concept of version control becomes important. With things modified between collaborators and different versions, being able to control files becomes vital for organizing the project. The concept of version control becomes important any time a group of people work on any large, complex project. With various aspects of a whole modified between collaborators and different versions of things floating around, being able to control which is the official, approved, or most current version of files become vital for organizing the project. Moreover, version control also stores older versions of the software that can be reviewed or rolled back if errors occur in the present version. Third, version control allows for accountability - knowing who made what changes.
Version Control: management of changes to collections of information and its associated configurations.
Naming Conventions
One of the earliest forms of version control for files in a project uses naming conventions. Often, people will name their files using the word “final” or other words in the filename to help them. Depending on the platform, some use underscores or numbers to better help them organize which file is which version.
Such a method can be helpful in organizing files, but checking to see which changes are in what document can become confusing without longer descriptions in the filename or another resource to match which changes are in which file.
Document Changes
Many programs like Microsoft Word and Google Documents can track changes either manually or automatically. Using their tools, changes to an individual document can be tracked across time. As long as changes are done to the same file, and it is not saved as a new file, changes can be tracked with these tools.
Centralized Versioning
While the Naming Conventions and Document Changes approaches can work well on a single device and with limited collaborators, projects often span across devices and even organizations. For that purpose, a more centralized approach is needed.
Programs like Git Links to an external site.allow for doing version control at both the local and server levels. Files can be organized locally and then uploaded to a central place where other collaborators can access and use them.
Why Git (and GitHub)?
Git is a version control system that allows for users to work on their own devices and then upload to a central place. Other people can then download those files and change them. Git handles who makes which changes and when a new change is made.
Instead of needing different names for files, Git will track how the file is changed over time. Changes can then be tracked and compared on files, collections, and even at a larger, project level.
GitHub
GitHub Links to an external site. is a website that uses Git to track things in repositories. In Git, a repository, sometimes called a “repo” for short, is a collection of files. Users can create them, add collaborators, and even work across repositories as well.
Private repositories cost money on GitHub, but public repos can be created for free by those who have accounts on the site.