Git Related Terms

  1. Version control software - Designed to handle everything form small to very large projects with speed and efficiency.
  2. Add - The first command in a chain of operations that directs Git to save a snapshot of the current project state.
  3. Commit - Captures a snapshot of the project's currently staged changes.
  4. Push - Used to upload local repository content to a remote repository.
  5. Pull - Used to fetch and download content from a remote repository and immediately update the local repository to match that content
  6. Clone - Is a Git command line utility which is used to target an existing repository and create a clone, or copy of the target repository.