mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-11-24 00:43:35 +01:00
31 lines
781 B
PowerShell
Executable File
31 lines
781 B
PowerShell
Executable File
#!/bin/powershell
|
|
<#
|
|
.SYNTAX ./clean-branch.ps1
|
|
.DESCRIPTION cleans the current Git branch (including submodules) from generated files
|
|
.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 {
|
|
& git clean --force -d -x
|
|
if ($lastExitCode -ne "0") { throw "'git clean' failed" }
|
|
|
|
& git submodule foreach --recursive git clean --force -d -x
|
|
if ($lastExitCode -ne "0") { throw "'git clean' in submodules failed" }
|
|
|
|
& git status
|
|
if ($lastExitCode -ne "0") { throw "'git status' failed" }
|
|
|
|
exit 0
|
|
} catch {
|
|
write-error "ERROR: line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
|
exit 1
|
|
}
|