Git Cheat Sheet
Initialize a git repo
git init
Add files to the staging area
git add fileName
OR
git add .
The git add . command is used to add all the files to the staging area.
Commit staged changes
git commit -m "message for the commit"
View commit his...
omangmorekar.hashnode.dev2 min read