PowerShell/scripts/fetch-repo.ps1

44 lines
1.5 KiB
PowerShell
Raw Normal View History

2023-10-31 12:20:46 +01:00
<#
2021-07-13 21:10:02 +02:00
.SYNOPSIS
2023-09-04 13:32:10 +02:00
Fetches Git repository updates
2021-10-04 21:29:23 +02:00
.DESCRIPTION
This PowerShell script fetches the latest updates into a local Git repository (including submodules).
2021-10-05 15:37:03 +02:00
.PARAMETER RepoDir
Specifies the file path to the local Git repository (default is working directory).
2021-07-13 21:10:02 +02:00
.EXAMPLE
2023-08-06 21:35:36 +02:00
PS> ./fetch-repo.ps1 C:\MyRepo
(1/3) Searching for Git executable... git version 2.41.0.windows.3
2023-09-04 13:32:10 +02:00
(2/3) Checking local repository...
2023-08-06 21:35:36 +02:00
(3/3) Fetching updates...
2023-09-04 13:32:10 +02:00
Fetched updates into repo 📂MyRepo (took 2 sec)
2021-07-13 21:10:02 +02:00
.LINK
https://github.com/fleschutz/PowerShell
2022-01-29 12:47:46 +01:00
.NOTES
Author: Markus Fleschutz | License: CC0
2021-03-10 07:45:21 +01:00
#>
2021-07-15 15:51:22 +02:00
param([string]$RepoDir = "$PWD")
2021-03-10 07:45:21 +01:00
try {
2021-10-05 15:37:03 +02:00
$StopWatch = [system.diagnostics.stopwatch]::startNew()
2022-11-30 13:30:35 +01:00
Write-Host "⏳ (1/3) Searching for Git executable... " -noNewline
2022-09-08 20:31:34 +02:00
& git --version
2021-07-15 12:19:29 +02:00
if ($lastExitCode -ne "0") { throw "Can't execute 'git' - make sure Git is installed and available" }
2023-09-04 13:32:10 +02:00
Write-Host "⏳ (2/3) Checking local repository..."
2022-09-08 20:31:34 +02:00
if (!(Test-Path "$RepoDir" -pathType container)) { throw "Can't access folder: $RepoDir" }
$RepoDirName = (Get-Item "$RepoDir").Name
2023-07-30 21:19:39 +02:00
Write-Host "⏳ (3/3) Fetching updates..."
& git -C "$RepoDir" fetch --all --recurse-submodules --tags --prune --prune-tags --force --quiet
2023-07-30 21:10:46 +02:00
if ($lastExitCode -ne "0") { throw "'git fetch --all' failed with exit code $lastExitCode" }
2021-04-27 11:12:51 +02:00
2021-10-05 15:37:03 +02:00
[int]$Elapsed = $StopWatch.Elapsed.TotalSeconds
2023-09-04 13:32:10 +02:00
"✔️ Fetched updates into repo 📂$RepoDirName (took $Elapsed sec)"
2021-09-27 10:09:45 +02:00
exit 0 # success
2021-03-10 07:45:21 +01:00
} catch {
2022-04-13 11:10:51 +02:00
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
2021-03-10 07:45:21 +01:00
exit 1
2023-07-30 21:10:46 +02:00
}