2021-04-21 19:53:52 +02:00
|
|
|
|
<#
|
2021-07-13 21:10:02 +02:00
|
|
|
|
.SYNOPSIS
|
|
|
|
|
fetch-repos.ps1 [<parent-dir>]
|
|
|
|
|
.DESCRIPTION
|
|
|
|
|
Fetches updates for all Git repositories under the current/given directory (including submodules)
|
|
|
|
|
.EXAMPLE
|
|
|
|
|
PS> .\fetch-repos.ps1 C:\MyRepos
|
|
|
|
|
.LINK
|
|
|
|
|
https://github.com/fleschutz/PowerShell
|
|
|
|
|
.NOTES
|
2021-08-03 15:53:57 +02:00
|
|
|
|
Author: Markus Fleschutz
|
|
|
|
|
License: CC0
|
2021-02-21 12:20:04 +01:00
|
|
|
|
#>
|
|
|
|
|
|
2021-07-15 15:51:22 +02:00
|
|
|
|
param([string]$ParentDir = "$PWD")
|
2021-02-21 12:20:04 +01:00
|
|
|
|
|
|
|
|
|
try {
|
2021-04-15 08:41:37 +02:00
|
|
|
|
$StopWatch = [system.diagnostics.stopwatch]::startNew()
|
2021-03-16 08:45:53 +01:00
|
|
|
|
|
|
|
|
|
if (-not(test-path "$ParentDir" -pathType container)) { throw "Can't access directory: $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" }
|
|
|
|
|
|
2021-05-07 14:47:06 +02:00
|
|
|
|
$Folders = (get-childItem "$ParentDir" -attributes Directory)
|
2021-05-26 20:00:47 +02:00
|
|
|
|
$FolderCount = $Folders.Count
|
2021-05-07 14:47:06 +02:00
|
|
|
|
$ParentDirName = (get-item "$ParentDir").Name
|
2021-05-26 20:00:47 +02:00
|
|
|
|
"Fetching updates for $FolderCount Git repositories at 📂$ParentDirName..."
|
2021-04-22 09:31:58 +02:00
|
|
|
|
|
2021-05-07 14:47:06 +02:00
|
|
|
|
foreach ($Folder in $Folders) {
|
|
|
|
|
$FolderName = (get-item "$Folder").Name
|
2021-05-26 20:00:47 +02:00
|
|
|
|
"🢃 Fetching 📂$FolderName..."
|
2021-04-15 16:54:59 +02:00
|
|
|
|
|
2021-05-07 14:47:06 +02:00
|
|
|
|
& git -C "$Folder" fetch --all --recurse-submodules --jobs=4
|
2021-04-22 09:31:58 +02:00
|
|
|
|
if ($lastExitCode -ne "0") { throw "'git fetch' failed" }
|
2021-02-28 18:49:53 +01:00
|
|
|
|
}
|
|
|
|
|
|
2021-04-21 16:43:08 +02:00
|
|
|
|
[int]$Elapsed = $StopWatch.Elapsed.TotalSeconds
|
2021-06-07 20:06:55 +02:00
|
|
|
|
"✔️ fetched $FolderCount Git repositories at 📂$ParentDirName in $Elapsed sec"
|
2021-02-21 12:20:04 +01:00
|
|
|
|
exit 0
|
|
|
|
|
} catch {
|
2021-04-27 11:12:51 +02:00
|
|
|
|
write-error "⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
2021-02-21 12:20:04 +01:00
|
|
|
|
exit 1
|
|
|
|
|
}
|