PowerShell/Scripts/clean-repo.ps1

45 lines
1.6 KiB
PowerShell
Raw Normal View History

2021-09-27 10:38:12 +02:00
<#
2021-07-13 21:10:02 +02:00
.SYNOPSIS
2022-02-28 10:57:50 +01:00
Cleans a Git repository from untracked files
2021-07-13 21:10:02 +02:00
.DESCRIPTION
2022-02-28 10:57:50 +01:00
This PowerShell script deletes all untracked files and folders in a Git repository (including submodules).
IMPORTANT NOTE: To be used with care! This cannot be undone!
2021-10-16 16:50:10 +02:00
.PARAMETER RepoDir
Specifies the path to the Git repository
2021-07-13 21:10:02 +02:00
.EXAMPLE
2021-09-24 17:19:49 +02:00
PS> ./clean-repo C:\MyRepo
2021-07-13 21:10:02 +02:00
.LINK
https://github.com/fleschutz/PowerShell
2022-01-29 12:47:46 +01:00
.NOTES
2022-03-28 16:25:24 +02:00
Author: Markus Fleschutz | License: CC0
2021-02-15 16:54:38 +01:00
#>
2021-07-15 15:51:22 +02:00
param([string]$RepoDir = "$PWD")
2021-02-28 18:26:20 +01:00
2021-02-15 16:54:38 +01:00
try {
2021-05-19 07:33:57 +02:00
$StopWatch = [system.diagnostics.stopwatch]::startNew()
2022-02-28 10:57:50 +01:00
"⏳ Step 1/3: Checking requirements..."
if (-not(test-path "$RepoDir" -pathType container)) { throw "Can't access repository folder at: $RepoDir - maybe a typo or missing folder permissions?" }
2021-04-20 08:28:29 +02:00
2022-03-28 16:25:24 +02:00
& git --version
2021-03-24 11:45:30 +01:00
if ($lastExitCode -ne "0") { throw "Can't execute 'git' - make sure Git is installed and available" }
2022-02-28 10:57:50 +01:00
"⏳ Step 2/3: Cleaning repository..."
2022-04-04 16:15:29 +02:00
& git -C "$RepoDir" clean -xfd -f # to delete all untracked files in the main repo
if ($lastExitCode -ne "0") { throw "'git clean' failed with exit code $lastExitCode" }
2021-02-15 16:54:38 +01:00
2022-02-28 10:57:50 +01:00
"⏳ Step 3/3: Cleaning submodules..."
2022-04-04 16:15:29 +02:00
& git -C "$RepoDir" submodule foreach --recursive git clean -xfd -f # to delete all untracked files in the submodules
if ($lastExitCode -ne "0") { throw "'git clean' in the submodules failed with exit code $lastExitCode" }
2021-02-15 16:54:38 +01:00
2022-03-28 16:25:24 +02:00
$RepoDirName = (Get-Item "$RepoDir").Name
2021-05-19 07:33:57 +02:00
[int]$Elapsed = $StopWatch.Elapsed.TotalSeconds
2021-06-07 20:06:55 +02:00
"✔️ cleaned Git repository 📂$RepoDirName in $Elapsed sec"
2022-03-28 16:25:24 +02:00
2021-09-27 10:09:45 +02:00
exit 0 # success
2021-02-15 16:54:38 +01:00
} catch {
2021-09-16 20:19:10 +02:00
"⚠️ Error: $($Error[0]) ($($MyInvocation.MyCommand.Name):$($_.InvocationInfo.ScriptLineNumber))"
2021-02-15 16:54:38 +01:00
exit 1
}