sidtechtalks.in
GIT
Commands CheatSheet
git clone <repo url>
git status
git add [file1] [file2]
git commit -m "MESSAGE"
git checkout BRANCH_NAME
git checkout -b NEW_BR
git pull origin <branch>
git push origin <branch>
git push -u origin <branch>
git stash
git stash pop