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