Components
- local = code history stored locally on your machine
- remote = code history stored on a server and shared by collaborators
Commands
- git init
- git remote add <name> <url>
- git pull
- = git fetch && git merge
- -r = git fetch && git rebase
- git add .
- git commit -m “commit message”
- git push