Working with git stash

Author: Al-mamun Sarkar Date: 2020-04-12 14:54:07

Working with git stash. The following command show how to save changes temporarily using git stash.

 

Same temporarily to stash:

 git stash

 

Getting changes form recent stash:

git stash pop

 

Show list of stash:

git stash list

 

Delete recent stash:

git stash drop