Git status:
$ git status
Git track all files:
$ git add .
Delete a Local GIT branch:
$ git branch -d [branch_name]
Create the branch on your local machine and switch in this branch :
$ git checkout -b [name_of_your_new_branch]
Creative Developer