PowerShell/Scripts/fetch-repo.ps1

32 lines
1003 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-03-22 20:10:18 +01:00
.SYNTAX ./fetch-repo.ps1 [<repo-dir>]
.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-03-16 08:45:53 +01:00
write-output "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"
& git --version
if ($lastExitCode -ne "0") { throw "Can't execute 'git' - make sure Git is installed and available" }
2021-03-10 16:00:16 +01:00
& git fetch --all --recurse-submodules
if ($lastExitCode -ne "0") { throw "'git fetch --all --recurse-submodules' failed" }
2021-03-10 07:45:21 +01:00
& git status
if ($lastExitCode -ne "0") { throw "'git status' failed" }
2021-03-19 07:31:35 +01:00
write-host -foregroundColor green "OK - fetched updates for Git repository $RepoDir"
2021-03-10 07:45:21 +01:00
exit 0
} catch {
write-error "ERROR: line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}