Basic Commands
git init - Initialize a folder as a repo.
git status - Check the current status of the working tree and staging area (any untracked, renamed, deleted, modified, or staged file).
git status --short - Show status in a compact format.
git add - Add changes on the working tree to the staging area.
git commit -m "Commit message" - Commit the staged changes to repo.