A quick-reference guide to essential Git commands for efficient version control and collaboration..
git init
git add .
git commit -m "Apna message"
git branch -M branchName
git remote add origin originUrl
git push -u origin branchName
git status
git add .
git commit -m "Your message"
git push -u origin branchName
git status
git checkout -b branchName
git branch
git pull
git pull origin branchName