mirror of
https://github.com/danog/code-server.git
synced 2024-12-02 17:56:04 +01:00
be032cf735
Closes many issues that I'll prune after adding more docs for users.
13 lines
216 B
Bash
Executable File
13 lines
216 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
main() {
|
|
cd "$(dirname "${0}")/../.."
|
|
|
|
git clean -Xffd
|
|
git submodule foreach --recursive git clean -xffd
|
|
git submodule foreach --recursive git reset --hard
|
|
}
|
|
|
|
main "$@"
|