PowerShell/Scripts/pull-repo.ps1

29 lines
853 B
PowerShell
Raw Normal View History

2021-04-16 18:58:19 +02:00
#!/usr/bin/pwsh
2021-03-19 17:47:07 +01:00
<#
2021-04-07 15:17:49 +02:00
.SYNTAX pull-repo.ps1 [<repo-dir>]
2021-03-22 20:10:18 +01:00
.DESCRIPTION pulls updates for the current/given Git repository (including submodules)
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
2021-03-19 17:47:07 +01:00
#>
param($RepoDir = "$PWD")
try {
2021-04-17 11:23:41 +02:00
"⏳ Pulling updates for Git repository $($RepoDir)..."
2021-03-19 17:47:07 +01:00
if (-not(test-path "$RepoDir" -pathType container)) { throw "Can't access directory: $RepoDir" }
set-location "$RepoDir"
2021-04-15 16:54:59 +02:00
& git pull --all --recurse-submodules --jobs=4
if ($lastExitCode -ne "0") { throw "'git pull' failed" }
2021-03-19 17:47:07 +01:00
& git status
if ($lastExitCode -ne "0") { throw "'git status' failed" }
2021-04-17 11:23:41 +02:00
write-host -foregroundColor green "✔️ Updates pulled for Git repository $RepoDir"
2021-03-19 17:47:07 +01:00
exit 0
} catch {
write-error "ERROR: line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}