Update sync-repo.ps1

This commit is contained in:
Markus Fleschutz 2022-12-04 11:31:38 +01:00
parent aef9527491
commit 4ef2f3e384

View File

@ -1,6 +1,6 @@
<# <#
.SYNOPSIS .SYNOPSIS
Synchronizes a Git repository Syncs a Git repo
.DESCRIPTION .DESCRIPTION
This PowerShell script synchronizes a Git repository by push & pull (including submodules). This PowerShell script synchronizes a Git repository by push & pull (including submodules).
.PARAMETER RepoDir .PARAMETER RepoDir
@ -18,23 +18,24 @@ param([string]$RepoDir = "$PWD")
try { try {
$StopWatch = [system.diagnostics.stopwatch]::startNew() $StopWatch = [system.diagnostics.stopwatch]::startNew()
"⏳ Step 1/3: Checking requirements..." Write-Host "⏳ (1/4) Searching for Git executable... " -noNewline
if (-not(test-path "$RepoDir" -pathType container)) { throw "Can't access directory: $RepoDir" }
& git --version & 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" }
"⏳ Step 2/3: Pushing local updates..." $RepoDirName = (Get-Item "$RepoDir").Name
Write-Host "⏳ (2/4) Checking Git repository... 📂$RepoDirName"
if (!(Test-Path "$RepoDir" -pathType container)) { throw "Can't access folder: $RepoDir" }
Write-Host "⏳ (3/4) Pushing local updates... " -noNewline
& git -C "$RepoDir" push & git -C "$RepoDir" push
if ($lastExitCode -ne "0") { throw "'git push' failed" } if ($lastExitCode -ne "0") { throw "'git push' failed" }
"⏳ Step 3/3: Pulling remote updates..." Write-Host "⏳ (4/4) Pulling remote updates... " -noNewline
& git -C "$RepoDir" pull --all --recurse-submodules --jobs=4 & git -C "$RepoDir" pull --all --recurse-submodules
if ($lastExitCode -ne "0") { throw "'git pull' failed" } if ($lastExitCode -ne "0") { throw "'git pull' failed" }
$RepoDirName = (Get-Item "$RepoDir").Name
[int]$Elapsed = $StopWatch.Elapsed.TotalSeconds [int]$Elapsed = $StopWatch.Elapsed.TotalSeconds
"✔️ synchronized Git repo 📂$RepoDirName in $Elapsed sec" "✔️ synchronized 📂$RepoDirName repository in $Elapsed sec."
exit 0 # success exit 0 # success
} catch { } catch {
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])" "⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"