git stash created files code example
Example 1: git stas hauntracked files
git stash --include-untracked
Example 2: git stash save untracked
git stash save -u "Message"
Example 3: how to get stashed on git
git stash pop
Example 4: how to get stashed on git
git stash pop or
git stash apply
Example 5: git stash file
# git stash specific file
git stash push <path>