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-04-12 11:35:57 +02:00
|
|
|
|
This PowerShell script synchronizes a local Git repository by push and pull (including submodules).
|
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-27 08:35:45 +02:00
|
|
|
|
PS> ./sync-repo C:\MyRepo
|
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
|
|
|
|
#>
|
|
|
|
|
|
2021-07-15 15:51:22 +02:00
|
|
|
|
param([string]$RepoDir = "$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-04-12 11:35:57 +02:00
|
|
|
|
Write-Host "⏳ (2/4) Checking local repository... 📂$RepoDir"
|
|
|
|
|
if (!(Test-Path "$RepoDir" -pathType container)) { throw "Can't access folder: $RepoDir" }
|
2022-12-04 11:31:38 +01:00
|
|
|
|
$RepoDirName = (Get-Item "$RepoDir").Name
|
2021-04-18 11:01:38 +02:00
|
|
|
|
|
2022-12-04 11:31:38 +01:00
|
|
|
|
Write-Host "⏳ (3/4) Pushing local updates... " -noNewline
|
2022-03-25 07:28:12 +01:00
|
|
|
|
& git -C "$RepoDir" push
|
2021-04-18 11:01:38 +02:00
|
|
|
|
if ($lastExitCode -ne "0") { throw "'git push' failed" }
|
|
|
|
|
|
2022-12-04 11:31:38 +01:00
|
|
|
|
Write-Host "⏳ (4/4) Pulling remote updates... " -noNewline
|
|
|
|
|
& git -C "$RepoDir" pull --all --recurse-submodules
|
2021-04-27 15:26:00 +02:00
|
|
|
|
if ($lastExitCode -ne "0") { throw "'git pull' failed" }
|
|
|
|
|
|
2022-03-25 07:28:12 +01:00
|
|
|
|
[int]$Elapsed = $StopWatch.Elapsed.TotalSeconds
|
2023-04-12 11:35:57 +02:00
|
|
|
|
"✔️ synchronized repo 📂$RepoDirName 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
|
|
|
|
|
}
|