mirror of
https://github.com/coder/code-server.git
synced 2024-11-23 11:42:39 +03:00
12 lines
185 B
Bash
Executable File
12 lines
185 B
Bash
Executable File
#!/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 "$@"
|