git cheat sheet
Clone a repository git clone <sourse> Clone a specific branch of a repository git clone -b <branch> <sourse> Create a local repository git init See the changed files since the last commit git status Add/remove all the current changes to the next commit git add . Commit the changes git commit -m "message" Give commit extra description git commit -m "message Description" See the changes to the tracked files git diff Compare a file between two branches ...