git stash not working code example
Example 1: git stas hauntracked files
git stash --include-untracked
Example 2: git stash clean command
git stash clear
Example 3: git stash save untracked
git stash save -u "Message"
git stash --include-untracked
git stash clear
git stash save -u "Message"