Git/Version Control

Description

Set of cards outlining Git and Version Control basics, as well as terminal commands for some common operations.
Andrew Watters
Flashcards by Andrew Watters, updated more than 1 year ago
Andrew Watters
Created by Andrew Watters over 5 years ago
87
0

Resource summary

Question Answer
What is Git? Git is a local version control and revision management system. It allows users to track changes to projects as well as track history and different versions (branches).
git add <filepath> Add file contents to the index, staging them for commit. Individual files and entire directories can be added.
git clone <url> Clones a (usually remote) repository, creating a new directory with the same name.
git commit -m "<message>" Record changes to the repository. Files are first staged and usually a descriptive commit message is included.
git checkout <args> Switch branches or restore working tree files. If no path is given, git checkout will update HEAD to set the specified branch as the current branch.
git branch <args> Lists, creates, or deletes git branches.
git diff <filepath> Show changes between the working tree and index, changes between two files on disc, or changes between two working trees.
git fetch <args> Fetch refs from one or more repositories. Unlike "git pull", remote changes will not be incorporated and HEAD will not be updated.
git <command> --help Prints the synopsis and a list of the most commonly used commands for the given operation.
git init Create an empty Git repository or reinitialize an existing one.
git pull Incorporates changes from a remote repo. into the current branch. Shorthand for git fetch followed by git merge FETCH_HEAD.
git status Show the working tree status. This is commonly done before a commit to check which files are staged to be committed.
git push Updates remote refs using local refs. Essentially "pushes" committed changes from local repository to the remote repo.
git merge <args> Incorporates changes from named commits into the current branch. This is the second sub-process of "git pull".
git log Show the commit logs, with author, date/time, and commit ID's for all previous commits.
git remote Manage a set of tracked repositories. Useful for updating the remote repository URL (git remote set-url origin <url>).
man git Shows the git manual (verbose) and list of all git commands with descriptions. Further documentation is also available at: https://git-scm.com/docs/git There are also some GREAT tutorials at: https://www.atlassian.com/git/tutorials
Show full summary Hide full summary

Similar

Computing Hardware - CPU and Memory
ollietablet123
SFDC App Builder 2
Parker Webb-Mitchell
Data Types
Jacob Sedore
Intake7 BIM L1
Stanley Chia
Software Processes
Nurul Aiman Abdu
Design Patterns
Erica Solum
CCNA Answers – CCNA Exam
Abdul Demir
Abstraction
Shannon Anderson-Rush
Spyware
Sam2
HTTPS explained with Carrier Pigeons
Shannon Anderson-Rush
Data Analytics
anelvr