6 lines
121 B
Bash
Executable File
6 lines
121 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
echo "Removing all untracked files in the working tree"
|
|
git clean -xdf $__working_tree_root
|
|
exit $?
|