12 lines
185 B
Bash
12 lines
185 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
set -euo pipefail
|
||
|
|
||
|
main() {
|
||
|
git clean -xffd
|
||
|
git submodule foreach --recursive git clean -xffd
|
||
|
git submodule foreach --recursive git reset --hard
|
||
|
}
|
||
|
|
||
|
main "$@"
|