Git Stas Hauntracked Dateien
git stash --include-untracked
Sleepy Swan
git stash --include-untracked
git stash apply stash@{0}
git stash apply stash@{index}
git stash clear
// Get a list of stashes
git stash list
// Apply specific stash index
git stash apply stash@{n}
// Since version 2.11 you can do:
git stash apply n
git stash pop