git

Git Stash

I’ve found the git stash command to be most helpful during my regular working days. These are summary of some of the ways I use it. Stash your Work in Progress (WIP) The simplest way to use it is to just run git stash. This will take all your changes and apply it to the stash stack. Applying the WIP from the Stash If you want to just get that stash back, just run git stash pop.