PowerShell/Scripts/pull-repo.ps1

29 lines
897 B
PowerShell
Raw Normal View History

2021-04-21 19:53:52 +02:00
<#
2021-04-07 15:17:49 +02:00
.SYNTAX pull-repo.ps1 [<repo-dir>]
.DESCRIPTION pulls updates for a local Git repository (including submodules)
2021-03-22 20:10:18 +01:00
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
2021-03-19 17:47:07 +01:00
#>
param($RepoDir = "$PWD")
try {
if (-not(test-path "$RepoDir" -pathType container)) { throw "Can't access directory: $RepoDir" }
set-location "$RepoDir"
2021-04-27 11:12:51 +02:00
$RepoDirName = (get-item "$RepoDir").Name
2021-04-26 08:12:16 +02:00
"⏳ Pulling updates for Git repository 📂$RepoDirName ..."
2021-03-19 17:47:07 +01:00
2021-04-18 10:55:37 +02:00
$Null = (git --version)
if ($lastExitCode -ne "0") { throw "Can't execute 'git' - make sure Git is installed and available" }
2021-04-26 08:12:16 +02:00
& git pull --recurse-submodules --jobs=4
2021-04-15 16:54:59 +02:00
if ($lastExitCode -ne "0") { throw "'git pull' failed" }
2021-03-19 17:47:07 +01:00
2021-04-26 08:12:16 +02:00
"✔️ updated Git repository 📂$RepoDirName"
2021-03-19 17:47:07 +01:00
exit 0
} catch {
2021-04-27 11:12:51 +02:00
write-error "⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
2021-03-19 17:47:07 +01:00
exit 1
}