PowerShell/Scripts/fetch-repo.ps1

28 lines
818 B
PowerShell
Raw Normal View History

2021-04-07 11:53:57 +02:00
#!/usr/bin/pwsh
2021-03-10 07:45:21 +01:00
<#
2021-04-07 15:17:49 +02:00
.SYNTAX fetch-repo.ps1 [<repo-dir>]
2021-03-22 20:10:18 +01:00
.DESCRIPTION fetches updates for the current/given Git repository (including submodules)
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
2021-03-10 07:45:21 +01:00
#>
param($RepoDir = "$PWD")
try {
2021-04-15 13:37:42 +02:00
"Fetching updates for Git repository $RepoDir ..."
2021-03-10 07:45:21 +01:00
2021-03-16 08:45:53 +01:00
if (-not(test-path "$RepoDir" -pathType container)) { throw "Can't access directory: $RepoDir" }
2021-03-10 07:45:21 +01:00
set-location "$RepoDir"
2021-04-15 13:37:42 +02:00
& git fetch --all --recurse-submodules --jobs=4
if ($lastExitCode -ne "0") { # retry once:
start-sleep -milliseconds 1000
& git fetch --all --recurse-submodules --jobs=1
if ($lastExitCode -ne "0") { throw "'git fetch' failed" }
}
2021-03-10 07:45:21 +01:00
exit 0
} catch {
write-error "ERROR: line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}