Git Cheatsheet
Initializing Git
git init
Help from Git
git help
Adding files to the git repository
git add . (for all)
git add filename.txt
Commiting changes to the git repository to keep track of it
git commit -m "Initial commit"
Logging the changes of the git...
shubhamvscode.hashnode.dev1 min read