General ----- Initialize Git: `git init` Get everything ready to commit: `git add .` Get custom file ready to commit: `git add index.html` Commit changes: `git commit -m "Message"` Add and commit in one step: `git commit -am "Message"` Remove files ...
↧