Git Stash Basics
Anirudha Mahale
1 min read
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}
0
Subscribe to my newsletter
Read articles from Anirudha Mahale directly inside your inbox. Subscribe to the newsletter, and don't miss out.
Written by