Git - sreeragravindran/references GitHub Wiki

Down merge into branch

git merge origin/master

Stash

git stash list 
git stash show -p stash@{index} 
git stash pop stash@{index} 

For a list of files to be pushed, run:

git diff --stat --cached

Revert to old commit as a new commit

git checkout <commitSHA> . 

Create branch on local

git checkout -b <branch_name> master
⚠️ **GitHub.com Fallback** ⚠️