Git Commands
Create a new Git repository git init Inspect the contents of the working directory and staging area git status Add files from the working directory to the staging area git add Show the difference between the working directory and the staging area (the commit HEAD) git diff Permanently store file changes from the staging area […]