6 lines
121 B
Bash
Raw Normal View History

#!/usr/bin/env bash
echo "Removing all untracked files in the working tree"
git clean -xdf $__working_tree_root
exit $?