git status to check statusgit init to initialized git

git add {FILE_NAME} or for all git add . to tracking or staging areagit commit -m “{MESSAGE}” to make file in commit stagegit commit -am “{MESSAGE}” shortcut to add and commit.git log to logs all commitsgit log —oneline gives logs in one lineKeep commits centric to one feature, one component or on fix
Present or past commit msg
depends {Present tense, imperative}
give order to code base
don’t care
git config —global user.name “Bashar Khan” and user.email “[email protected]”
.gitignore generator to generate that project