PowerShell/Scripts/fetch-repo.ps1

39 lines
1.2 KiB
PowerShell
Raw Normal View History

2021-09-27 10:38:12 +02:00
<#
2021-07-13 21:10:02 +02:00
.SYNOPSIS
2022-04-13 11:10:51 +02:00
Fetches updates for a Git repository
2021-10-04 21:29:23 +02:00
.DESCRIPTION
2022-01-29 12:47:46 +01:00
This PowerShell script fetches updates for a local Git repository (including submodules).
2021-10-05 15:37:03 +02:00
.PARAMETER RepoDir
Specifies the path to the Git repository.
2021-07-13 21:10:02 +02:00
.EXAMPLE
2021-09-24 17:19:49 +02:00
PS> ./fetch-repo
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()
"⏳ Step 1/2: Checking requirements... "
& 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" }
if (-not(Test-Path "$RepoDir" -pathType container)) { throw "Can't access folder: $RepoDir" }
2022-04-13 11:10:51 +02:00
"⏳ Step 2/2: Fetching updates (including submodules)... "
2021-10-06 09:10:49 +02:00
& git -C "$RepoDir" fetch --all --recurse-submodules --prune --prune-tags --force
if ($lastExitCode -ne "0") { throw "'git fetch' failed with exit code $lastExitCode" }
2021-04-27 11:12:51 +02:00
2021-10-05 15:37:03 +02:00
$RepoDirName = (get-item "$RepoDir").Name
[int]$Elapsed = $StopWatch.Elapsed.TotalSeconds
2022-04-13 11:10:51 +02:00
"✔️ fetched updates for repo 📂$RepoDirName in $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
2022-04-13 12:06:32 +02:00
}