Created
February 6, 2019 15:17
-
-
Save davidread/98a883005586db33b325c1bcb69f5be7 to your computer and use it in GitHub Desktop.
Git concepts & language
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"working tree" = "repository" | |
"untracked files" - diff | |
"changes" | |
---- "add" ---> | |
<--- "rm" ---- | |
"Staged" = "Changes to be committed" = "index" | |
Similar: "indexed" "tracked files" "snapshot" | |
---- "commit" ---> | |
<--- "reset"/"checkout" --- | |
"Commit" = "revision" = "object" | |
"local refs" | |
---- "push" ---> | |
<--- "fetch" ---- | |
"remote refs" | |
"remote repository" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment