Q: What is the command for git stash and bringing the staged changes back, stash the changes back? A: Use: bash git stash push -m "temp" Then to bring the stashed changes back: bash git stash pop If you specifically want to restore them as staged index state too, use: bash git stash pop --index Quick full flow: bash git stash push -m "wip" ...do other work... git stash pop --index