Skip to content

Instantly share code, notes, and snippets.

@akingdom
Last active December 17, 2023 10:21
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save akingdom/f13e1d9d27fcde33448c17fbbb0586bc to your computer and use it in GitHub Desktop.
Save akingdom/f13e1d9d27fcde33448c17fbbb0586bc to your computer and use it in GitHub Desktop.

Source Control - what is it

Term Definition
Source A written recipe (programming code) and ingredients (data resources) from which an app is built.
Version Source Control A way to keep track of all the changes you make and easily go back to any previous version if you make a mistake.
Git A version source control system that distributes a full copy to each developer. Originally created to manage the Linux project.
GitHub One commercial provider of a Git service. Backed by Microsoft.
Repository Storage for all the different versions of your project's files.
Local Stored on your computer
Remote Stored on a server system
Commit Write changes to local (on-computer) repository, including a description of the change.
Pull Merges changes from a repository on a remote server system to a local repository on your computer.
Push Merges changes from a local repository on your computer to a repository on a remote server system.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment