Cheat Sheets
Essential Git Cheat Sheet
#git#developer#coding#productivity
About this Resource
The only Git commands you actually need. No fluff, just the essentials for daily development.
Setting Up
`git init` - New repo in current dir
`git clone [url]` - Download a project
Daily Work
`git status` - See changes
`git add .` - Stage all changes
`git commit -m "msg"` - Save snapshot
Branching
`git branch [name]` - Create new branch
`git checkout [name]` - Switch to branch