Mastering Git with GitHub: A Comprehensive Cheat Sheet
Initialize a repository:
git init
Clone a repository:
git clone <repository_url>
Check the status:
git status
Add changes to the staging area: ( git add . --> to stage all files)
git add <file_name>
Commit changes:
git commit -m "Commit ...
vshivde.hashnode.dev3 min read