git stash untracked files code example
Example 1: git stas hauntracked files
git stash --include-untracked
Example 2: git remove untracked files
# Print out the list of files which will be removed (dry run)
git clean -n
# Interactive and you will get a quick overview of what is
# going to be deleted offering you the possibility to include/exclude
# the affected files
git clean -i
# To remove files, run
git clean -f
# To remove directories, run
git clean -fd
# To remove ignored files, run
git clean -fX
# To remove ignored and non-ignored files, run
git clean -fx
Example 3: git stash clean command
git stash clear
Example 4: git stash save untracked
git stash save -u "Message"
Example 5: git abandon untracked files
git clean -i