Git: Basic (init, add, remove, commit)
1. Git init
$ git init
2. Working on projects
3. Check the status
$ git status
4. Add files
$ git add index.html
// add index.html file
$ git add *.js
// all files ends with .js
$ git .
// all files
You can see the files is moved to the staging area
5. Remove file from the staging area
$ git rm --cached style.css
6. commit
$ git commit -m "message"