1. git init - initialise empty git repo
  2. git status - check the status of current repo
  3. git add - add current file to staging
  4. git add . - add
  5. git commit -m - for commiting the changes
  6. git checkout - to revert the changes to last stage or commit
  7. git checkout . - to revert the changes in current directory to last stage or commit