<#
.SYNOPSIS
	Cleans a Git repository from untracked files (including submodules)
.DESCRIPTION
	clean-repo.ps1 [<RepoDir>]
.EXAMPLE
	PS> ./clean-repo C:\MyRepo
	๐Ÿงน Cleaning Git repository ๐Ÿ“‚C:\MyRepo from untracked files...
	โœ”๏ธ cleaned Git repository ๐Ÿ“‚C:\MyRepo in 0 sec
.NOTES
	Author: Markus Fleschutz ยท License: CC0
.LINK
	https://github.com/fleschutz/PowerShell
#>

param([string]$RepoDir = "$PWD")

try {
	$StopWatch = [system.diagnostics.stopwatch]::startNew()

	if (-not(test-path "$RepoDir" -pathType container)) { throw "Can't access directory: $RepoDir" }
	
	$RepoDirName = (get-item "$RepoDir").Name
	"๐Ÿงน Cleaning Git repository ๐Ÿ“‚$RepoDirName from untracked files..."

	$Null = (git --version)
	if ($lastExitCode -ne "0") { throw "Can't execute 'git' - make sure Git is installed and available" }
	
	& git -C "$RepoDir" clean -xfd -f # force + recurse into dirs + don't use the standard ignore rules
	if ($lastExitCode -ne "0") { throw "'git clean -xfd -f' failed" }

	& git -C "$RepoDir" submodule foreach --recursive git clean -xfd -f
	if ($lastExitCode -ne "0") { throw "'git clean -xfd -f' in submodules failed" }

	[int]$Elapsed = $StopWatch.Elapsed.TotalSeconds
	"โœ”๏ธ cleaned Git repository ๐Ÿ“‚$RepoDirName in $Elapsed sec"
	exit 0 # success
} catch {
	"โš ๏ธ Error: $($Error[0]) ($($MyInvocation.MyCommand.Name):$($_.InvocationInfo.ScriptLineNumber))"
	exit 1
}