mirror of
https://github.com/fleschutz/PowerShell.git
synced 2025-04-11 12:38:17 +02:00
Update clean-branch.ps1
This commit is contained in:
parent
6efc805a7d
commit
f7baec4716
@ -1,7 +1,7 @@
|
|||||||
#!/bin/powershell
|
#!/bin/powershell
|
||||||
<#
|
<#
|
||||||
.SYNTAX ./clean-branch.ps1 [<repo-dir>]
|
.SYNTAX ./clean-branch.ps1 [<repo-dir>]
|
||||||
.DESCRIPTION cleans the current/given Git repository from generated files (including submodules, e.g. for a fresh build)
|
.DESCRIPTION cleans the current/given Git repository from untracked files (including submodules, e.g. for a fresh build)
|
||||||
.LINK https://github.com/fleschutz/PowerShell
|
.LINK https://github.com/fleschutz/PowerShell
|
||||||
.NOTES Author: Markus Fleschutz / License: CC0
|
.NOTES Author: Markus Fleschutz / License: CC0
|
||||||
#>
|
#>
|
||||||
@ -9,18 +9,14 @@
|
|||||||
param($RepoDir = "$PWD")
|
param($RepoDir = "$PWD")
|
||||||
|
|
||||||
try {
|
try {
|
||||||
& git --version
|
"Cleaning Git repository $RepoDir from untracked files ..."
|
||||||
} catch {
|
|
||||||
write-error "ERROR: can't execute 'git' - make sure Git is installed and available"
|
|
||||||
exit 1
|
|
||||||
}
|
|
||||||
|
|
||||||
try {
|
|
||||||
write-progress "Cleaning Git repository $RepoDir from generated files ..."
|
|
||||||
|
|
||||||
if (-not(test-path "$RepoDir" -pathType container)) { throw "Can't access directory: $RepoDir" }
|
if (-not(test-path "$RepoDir" -pathType container)) { throw "Can't access directory: $RepoDir" }
|
||||||
set-location "$RepoDir"
|
set-location "$RepoDir"
|
||||||
|
|
||||||
|
& git --version
|
||||||
|
if ($lastExitCode -ne "0") { throw "Can't execute 'git' - make sure Git is installed and available" }
|
||||||
|
|
||||||
& git clean -fdx # force + recurse into dirs + don't use the standard ignore rules
|
& git clean -fdx # force + recurse into dirs + don't use the standard ignore rules
|
||||||
if ($lastExitCode -ne "0") { throw "'git clean -fdx' failed" }
|
if ($lastExitCode -ne "0") { throw "'git clean -fdx' failed" }
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user