Skip to main content

Command Palette

Search for a command to run...

Git Stash Basics

Published
1 min readView as Markdown

1) To Stash all the files including untracked files

git stash push -u -m "message"

2) To View all the stash

git stash list

3) To apply a stash

git stash apply stash@{0}