2021-09-27 10:38:12 +02:00
|
|
|
|
<#
|
2021-07-13 21:10:02 +02:00
|
|
|
|
.SYNOPSIS
|
2023-04-12 11:35:57 +02:00
|
|
|
|
Synchronizes a repo
|
2021-10-04 21:29:23 +02:00
|
|
|
|
.DESCRIPTION
|
2023-09-01 17:53:03 +02:00
|
|
|
|
This PowerShell script synchronizes a local Git repository by pull and push (including submodules).
|
2023-09-01 13:25:04 +02:00
|
|
|
|
.PARAMETER path
|
2021-10-16 16:50:10 +02:00
|
|
|
|
Specifies the path to the Git repository
|
2021-07-13 21:10:02 +02:00
|
|
|
|
.EXAMPLE
|
2023-09-01 13:25:04 +02:00
|
|
|
|
PS> ./sync-repo.ps1 C:\MyRepo
|
|
|
|
|
⏳ (1/4) Searching for Git executable... git version 2.42.0.windows.1
|
|
|
|
|
⏳ (2/4) Checking local repository... 📂C:\MyRepo
|
|
|
|
|
⏳ (3/4) Pulling remote updates... Already up to date.
|
|
|
|
|
⏳ (4/4) Pushing local updates... Everything up-to-date
|
|
|
|
|
✔️ Synced repo 📂MyRepo in 5 sec
|
2021-07-13 21:10:02 +02:00
|
|
|
|
.LINK
|
|
|
|
|
https://github.com/fleschutz/PowerShell
|
2022-01-30 10:49:30 +01:00
|
|
|
|
.NOTES
|
2022-06-09 16:12:40 +02:00
|
|
|
|
Author: Markus Fleschutz | License: CC0
|
2021-04-18 11:01:38 +02:00
|
|
|
|
#>
|
|
|
|
|
|
2023-09-01 13:25:04 +02:00
|
|
|
|
param([string]$path = "$PWD")
|
2021-04-18 11:01:38 +02:00
|
|
|
|
|
|
|
|
|
try {
|
2022-12-04 11:31:38 +01:00
|
|
|
|
$StopWatch = [system.diagnostics.stopwatch]::startNew()
|
2021-04-27 15:26:00 +02:00
|
|
|
|
|
2022-12-04 11:31:38 +01:00
|
|
|
|
Write-Host "⏳ (1/4) Searching for Git executable... " -noNewline
|
|
|
|
|
& git --version
|
2023-04-12 11:35:57 +02:00
|
|
|
|
if ($lastExitCode -ne "0") { throw "Can't execute 'git' - make sure Git is installed and available" }
|
2021-04-18 11:01:38 +02:00
|
|
|
|
|
2023-09-01 13:25:04 +02:00
|
|
|
|
Write-Host "⏳ (2/4) Checking local repository... 📂$path"
|
|
|
|
|
if (!(Test-Path "$path" -pathType container)) { throw "Can't access folder: $path" }
|
|
|
|
|
$pathName = (Get-Item "$path").Name
|
2021-04-18 11:01:38 +02:00
|
|
|
|
|
2023-09-01 13:25:04 +02:00
|
|
|
|
Write-Host "⏳ (3/4) Pulling remote updates... " -noNewline
|
|
|
|
|
& git -C "$Path" pull --all --recurse-submodules
|
|
|
|
|
if ($lastExitCode -ne "0") { throw "'git pull --all --recurse-submodes' failed" }
|
2021-04-18 11:01:38 +02:00
|
|
|
|
|
2023-09-01 13:25:04 +02:00
|
|
|
|
Write-Host "⏳ (4/4) Pushing local updates... " -noNewline
|
|
|
|
|
& git -C "$Path" push
|
|
|
|
|
if ($lastExitCode -ne "0") { throw "'git push' failed" }
|
2021-04-27 15:26:00 +02:00
|
|
|
|
|
2022-03-25 07:28:12 +01:00
|
|
|
|
[int]$Elapsed = $StopWatch.Elapsed.TotalSeconds
|
2023-09-01 13:25:04 +02:00
|
|
|
|
"✔️ Synced repo 📂$pathName in $Elapsed sec"
|
2021-09-27 10:09:45 +02:00
|
|
|
|
exit 0 # success
|
2021-04-18 11:01:38 +02:00
|
|
|
|
} catch {
|
2022-04-13 12:06:32 +02:00
|
|
|
|
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
2021-04-18 11:01:38 +02:00
|
|
|
|
exit 1
|
|
|
|
|
}
|