diff --git a/git_scripts/git_super_clean.bat b/git_scripts/git_super_clean.bat new file mode 100644 index 0000000..266b1a9 --- /dev/null +++ b/git_scripts/git_super_clean.bat @@ -0,0 +1,3 @@ +git reset --hard +git submodule update --init +git clean -fxd \ No newline at end of file diff --git a/git_scripts/git_super_clean.sh b/git_scripts/git_super_clean.sh new file mode 100755 index 0000000..c10101a --- /dev/null +++ b/git_scripts/git_super_clean.sh @@ -0,0 +1,4 @@ +#!/bin/bash +git reset --hard +git submodule update --init +git clean -fxd \ No newline at end of file