PowerShell/Scripts/fetch-repos.ps1

36 lines
963 B
PowerShell
Raw Normal View History

2021-02-21 12:20:04 +01:00
#!/bin/powershell
<#
2021-02-28 18:49:53 +01:00
.SYNTAX ./fetch-repos.ps1 [<parent-dir>]
2021-02-21 12:24:22 +01:00
.DESCRIPTION fetches all Git repositories under the current/given directory (including submodules)
2021-02-21 12:20:04 +01:00
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
#>
2021-02-28 18:49:53 +01:00
param($ParentDir = "$PWD")
2021-02-21 12:20:04 +01:00
try {
2021-02-28 18:26:20 +01:00
$null = $(git --version)
2021-02-21 12:20:04 +01:00
} catch {
write-error "ERROR: can't execute 'git' - make sure Git is installed and available"
exit 1
}
try {
2021-03-15 14:46:08 +01:00
write-progress "Fetching Git repositories under $ParentDir ..."
2021-02-28 18:49:53 +01:00
set-location $ParentDir
get-childItem $ParentDir -attributes Directory | foreach-object {
set-location $_.FullName
2021-02-28 18:26:20 +01:00
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-02-28 18:49:53 +01:00
set-location ..
}
write-host -foregroundColor green "OK - fetched repositories under $ParentDir"
2021-02-21 12:20:04 +01:00
exit 0
} catch {
write-error "ERROR: line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}