2021-04-21 19:53:52 +02:00
|
|
|
|
<#
|
2021-04-07 15:17:49 +02:00
|
|
|
|
.SYNTAX pull-repos.ps1 [<parent-dir>]
|
2021-03-22 20:10:18 +01:00
|
|
|
|
.DESCRIPTION pulls updates for all Git repositories under the current/given directory (including submodules)
|
|
|
|
|
.LINK https://github.com/fleschutz/PowerShell
|
|
|
|
|
.NOTES Author: Markus Fleschutz / License: CC0
|
2021-01-20 16:11:38 +01:00
|
|
|
|
#>
|
|
|
|
|
|
2021-02-28 18:49:53 +01:00
|
|
|
|
param($ParentDir = "$PWD")
|
2021-02-18 20:17:55 +01:00
|
|
|
|
|
2021-02-13 10:26:14 +01:00
|
|
|
|
try {
|
2021-04-15 08:41:37 +02:00
|
|
|
|
$StopWatch = [system.diagnostics.stopwatch]::startNew()
|
2021-03-19 17:43:28 +01:00
|
|
|
|
|
|
|
|
|
if (-not(test-path "$ParentDir" -pathType container)) { throw "Can't access directory: $ParentDir" }
|
|
|
|
|
set-location "$ParentDir"
|
|
|
|
|
|
2021-04-17 11:29:32 +02:00
|
|
|
|
$Null = (git --version)
|
2021-03-20 14:36:45 +01:00
|
|
|
|
if ($lastExitCode -ne "0") { throw "Can't execute 'git' - make sure Git is installed and available" }
|
|
|
|
|
|
|
|
|
|
[int]$Count = 0
|
2021-02-28 18:49:53 +01:00
|
|
|
|
get-childItem $ParentDir -attributes Directory | foreach-object {
|
2021-05-03 10:31:01 +02:00
|
|
|
|
"🢃 Pulling updates for Git repository 📂$($_.Name) ..."
|
2021-03-20 14:36:45 +01:00
|
|
|
|
|
2021-02-28 18:49:53 +01:00
|
|
|
|
set-location $_.FullName
|
|
|
|
|
|
2021-04-25 20:19:58 +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-02-28 18:49:53 +01:00
|
|
|
|
|
|
|
|
|
set-location ..
|
2021-03-20 14:36:45 +01:00
|
|
|
|
$Count++
|
2021-01-20 16:11:38 +01:00
|
|
|
|
}
|
2021-04-14 16:08:10 +02:00
|
|
|
|
|
2021-04-27 11:12:51 +02:00
|
|
|
|
$ParentDirName = (get-item "$ParentDir").Name
|
2021-04-21 16:43:08 +02:00
|
|
|
|
[int]$Elapsed = $StopWatch.Elapsed.TotalSeconds
|
2021-05-04 20:31:06 +02:00
|
|
|
|
"✔️ updated $Count Git repositories at 📂$ParentDirName in $Elapsed sec."
|
2021-01-20 16:11:38 +01:00
|
|
|
|
exit 0
|
|
|
|
|
} catch {
|
2021-04-27 11:12:51 +02:00
|
|
|
|
write-error "⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
2021-01-20 16:11:38 +01:00
|
|
|
|
exit 1
|
|
|
|
|
}
|