mirror of
https://github.com/fleschutz/PowerShell.git
synced 2025-04-04 22:38:34 +02:00
Improve output of clean-repo.ps1 and clean-repos.ps1
This commit is contained in:
parent
96ae539454
commit
4f74a5f1ce
@ -8,22 +8,21 @@
|
|||||||
param($RepoDir = "$PWD")
|
param($RepoDir = "$PWD")
|
||||||
|
|
||||||
try {
|
try {
|
||||||
$RepoDir = resolve-path "$RepoDir"
|
|
||||||
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"
|
$RepoDirName = (get-item "$RepoDir").Name
|
||||||
|
|
||||||
"⏳ Cleaning Git repository 📂$RepoDir from untracked files..."
|
"🧹 Cleaning Git repository 📂$RepoDirName from untracked files..."
|
||||||
|
|
||||||
$Null = (git --version)
|
$Null = (git --version)
|
||||||
if ($lastExitCode -ne "0") { throw "Can't execute 'git' - make sure Git is installed and available" }
|
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 -C "$RepoDir" 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" }
|
||||||
|
|
||||||
& git submodule foreach --recursive git clean -fdx
|
& git -C "$RepoDir" submodule foreach --recursive git clean -fdx
|
||||||
if ($lastExitCode -ne "0") { throw "'git clean -fdx' in submodules failed" }
|
if ($lastExitCode -ne "0") { throw "'git clean -fdx' in submodules failed" }
|
||||||
|
|
||||||
"✔️ cleaned Git repository 📂$RepoDir"
|
"✔️ cleaned Git repository 📂$RepoDirName"
|
||||||
exit 0
|
exit 0
|
||||||
} catch {
|
} catch {
|
||||||
write-error "⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
write-error "⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
||||||
|
@ -11,23 +11,20 @@ try {
|
|||||||
$StopWatch = [system.diagnostics.stopwatch]::startNew()
|
$StopWatch = [system.diagnostics.stopwatch]::startNew()
|
||||||
|
|
||||||
if (-not(test-path "$ParentDir" -pathType container)) { throw "Can't access directory: $ParentDir" }
|
if (-not(test-path "$ParentDir" -pathType container)) { throw "Can't access directory: $ParentDir" }
|
||||||
set-location $ParentDir
|
|
||||||
|
|
||||||
$Null = (git --version)
|
$Null = (git --version)
|
||||||
if ($lastExitCode -ne "0") { throw "Can't execute 'git' - make sure Git is installed and available" }
|
if ($lastExitCode -ne "0") { throw "Can't execute 'git' - make sure Git is installed and available" }
|
||||||
|
|
||||||
[int]$Count = 0
|
[int]$Count = 0
|
||||||
get-childItem "$ParentDir" -attributes Directory | foreach-object {
|
get-childItem "$ParentDir" -attributes Directory | foreach-object {
|
||||||
"Cleaning Git repository 📂$($_.Name) from untracked files ..."
|
"🧹 Cleaning Git repository 📂$($_.Name) from untracked files ..."
|
||||||
set-location $_.FullName
|
|
||||||
|
|
||||||
& git clean -fdx # force + recurse into dirs + don't use the standard ignore rules
|
& git -C "$_.FullName" 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" }
|
||||||
|
|
||||||
& git submodule foreach --recursive git clean -fdx
|
& git -C "$._FullName" submodule foreach --recursive git clean -fdx
|
||||||
if ($lastExitCode -ne "0") { throw "'git clean -fdx' in submodules failed" }
|
if ($lastExitCode -ne "0") { throw "'git clean -fdx' in submodules failed" }
|
||||||
|
|
||||||
set-location ..
|
|
||||||
$Count++
|
$Count++
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user