git stashing code example
Example 1: git stash
git stash
git stash list
git stash apply stash@{0}
git stash clear
Example 2: git stash clean command
git stash clear
Example 3: git stash
git stash save "optional message for yourself"
git stash list
git stash show -p STASH-NAME
git stash apply STASH-NAME
git stash pop STASH-NAME
git stash drop STASH-NAME
git stash clear
Example 4: stash clear list
git stash clear // to clear the whole list
Example 5: git save to stash
git stash save "name to describe stashed content"
Example 6: git stash
git stash or git stash push