PowerShell/scripts/fetch-repo.ps1

44 lines
1.6 KiB
PowerShell
Raw Normal View History

2024-10-01 15:11:03 +02:00
<#
2021-07-13 21:10:02 +02:00
.SYNOPSIS
2024-06-19 10:14:53 +02:00
Fetches updates into a Git repo
2021-10-04 21:29:23 +02:00
.DESCRIPTION
2024-06-19 10:14:53 +02:00
This PowerShell script fetches remote updates into a local Git repository (including submodules).
2024-09-17 07:30:38 +02:00
.PARAMETER path
Specifies the file path to the local Git repository (default is working directory).
2021-07-13 21:10:02 +02:00
.EXAMPLE
2024-06-19 10:14:53 +02:00
PS> ./fetch-repo.ps1
2023-08-06 21:35:36 +02:00
(1/3) Searching for Git executable... git version 2.41.0.windows.3
2024-06-19 10:14:53 +02:00
(2/3) Checking local repository... C:\Repos\rust
2024-09-17 07:30:38 +02:00
(3/3) Fetching updates (including submodules)...
2024-09-24 21:28:31 +02:00
Updates fetched into 📂rust repo in 2s.
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
#>
2024-09-17 07:30:38 +02:00
param([string]$path = "$PWD")
2021-03-10 07:45:21 +01:00
try {
2024-06-19 10:14:53 +02:00
$stopWatch = [system.diagnostics.stopwatch]::startNew()
2021-10-05 15:37:03 +02:00
2024-09-17 07:30:38 +02: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" }
2024-09-17 07:30:38 +02:00
Write-Host "⏳ (2/3) Checking local repository... $path"
if (!(Test-Path "$path" -pathType container)) { throw "Can't access folder: $path" }
$repoDirName = (Get-Item "$path").Name
2024-09-17 07:30:38 +02:00
Write-Host "⏳ (3/3) Fetching updates (including submodules)..."
& git -C "$path" 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
2024-06-19 10:14:53 +02:00
[int]$elapsed = $stopWatch.Elapsed.TotalSeconds
2024-09-24 21:28:31 +02:00
"✅ Updates fetched into 📂$repoDirName repo in $($elapsed)s."
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
}