2021-02-15 16:54:38 +01:00
|
|
|
#!/bin/powershell
|
|
|
|
<#
|
|
|
|
.SYNTAX ./clean-branch.ps1
|
2021-02-26 19:25:54 +01:00
|
|
|
.DESCRIPTION cleans the current Git branch including submodules from generated files (e.g. for a fresh build)
|
2021-02-15 16:54:38 +01:00
|
|
|
.LINK https://github.com/fleschutz/PowerShell
|
|
|
|
.NOTES Author: Markus Fleschutz / License: CC0
|
|
|
|
#>
|
|
|
|
|
|
|
|
try {
|
|
|
|
& git --version
|
|
|
|
} catch {
|
|
|
|
write-error "ERROR: can't execute 'git' - make sure Git is installed and available"
|
|
|
|
exit 1
|
|
|
|
}
|
|
|
|
|
|
|
|
try {
|
2021-02-26 19:25:54 +01:00
|
|
|
& git clean -fdx # force + recurse into dirs + don't use the standard ignore rules
|
|
|
|
if ($lastExitCode -ne "0") { throw "'git clean -fdx' failed" }
|
2021-02-15 16:54:38 +01:00
|
|
|
|
2021-02-26 19:25:54 +01:00
|
|
|
& git submodule foreach --recursive git clean -fdx
|
|
|
|
if ($lastExitCode -ne "0") { throw "'git clean -fdx' in submodules failed" }
|
2021-02-15 16:54:38 +01:00
|
|
|
|
|
|
|
& git status
|
|
|
|
if ($lastExitCode -ne "0") { throw "'git status' failed" }
|
|
|
|
|
|
|
|
exit 0
|
|
|
|
} catch {
|
2021-02-16 10:03:20 +01:00
|
|
|
write-error "ERROR: line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
2021-02-15 16:54:38 +01:00
|
|
|
exit 1
|
|
|
|
}
|