stash and unstash git code example
Example 1: git stas hauntracked files
git stash --include-untracked
Example 2: git view stash
git stash show -p stash@{1}
Example 3: how to unstash git stash
git stash pop
Example 4: git save to stash
git stash save "name to describe stashed content"
Example 5: how to unstash git stash
git stash pop