Git Related Terms
- Version control software - Designed to handle everything form small to very large projects with speed and efficiency.
- Add - The first command in a chain of operations that directs Git to save a snapshot of the current project state.
- Commit - Captures a snapshot of the project's currently staged changes.
- Push - Used to upload local repository content to a remote repository.
- Pull - Used to fetch and download content from a remote repository and immediately update the local repository to match that content
- 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.