2021-09-27 10:38:12 +02:00
|
|
|
|
<#
|
2021-07-13 21:10:02 +02:00
|
|
|
|
.SYNOPSIS
|
2022-11-13 11:22:47 +01:00
|
|
|
|
Fetches updates for Git repos
|
2021-07-13 21:10:02 +02:00
|
|
|
|
.DESCRIPTION
|
2022-01-29 12:47:46 +01:00
|
|
|
|
This PowerShell script fetches updates for all Git repositories in a folder (including submodules).
|
2021-10-16 16:50:10 +02:00
|
|
|
|
.PARAMETER ParentDir
|
|
|
|
|
Specifies the path to the parent folder
|
2021-07-13 21:10:02 +02:00
|
|
|
|
.EXAMPLE
|
2021-09-24 17:19:49 +02:00
|
|
|
|
PS> ./fetch-repos C:\MyRepos
|
2021-07-13 21:10:02 +02:00
|
|
|
|
.LINK
|
|
|
|
|
https://github.com/fleschutz/PowerShell
|
2022-01-29 12:47:46 +01:00
|
|
|
|
.NOTES
|
2022-08-04 16:23:26 +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
|
|
|
|
|
2022-11-13 11:22:47 +01:00
|
|
|
|
Write-Host "⏳ (1) Searching for Git executable... " -noNewline
|
2022-08-04 16:23:26 +02:00
|
|
|
|
& 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" }
|
|
|
|
|
|
2022-08-18 09:46:16 +02:00
|
|
|
|
$ParentDirName = (Get-Item "$ParentDir").Name
|
2022-11-13 11:22:47 +01:00
|
|
|
|
Write-Host "⏳ (2) Checking folder 📂$ParentDirName... " -noNewline
|
2022-08-18 09:46:16 +02:00
|
|
|
|
if (-not(Test-Path "$ParentDir" -pathType container)) { throw "Can't access folder: $ParentDir" }
|
2022-08-04 16:23:26 +02:00
|
|
|
|
$Folders = (Get-ChildItem "$ParentDir" -attributes Directory)
|
2021-10-16 11:58:26 +02:00
|
|
|
|
$NumFolders = $Folders.Count
|
2022-11-13 11:22:47 +01:00
|
|
|
|
Write-Host "found $NumFolders subfolders."
|
2021-04-22 09:31:58 +02:00
|
|
|
|
|
2022-08-04 16:23:26 +02:00
|
|
|
|
[int]$Step = 3
|
2021-05-07 14:47:06 +02:00
|
|
|
|
foreach ($Folder in $Folders) {
|
2022-08-31 09:06:20 +02:00
|
|
|
|
$FolderName = (Get-Item "$Folder").Name
|
2022-11-13 11:22:47 +01:00
|
|
|
|
"⏳ ($Step/$($NumFolders + 2)) Fetching into 📂$FolderName..."
|
2021-04-15 16:54:59 +02:00
|
|
|
|
|
2021-10-06 09:10:49 +02:00
|
|
|
|
& git -C "$Folder" fetch --all --recurse-submodules --prune --prune-tags --force
|
2021-10-16 11:58:26 +02:00
|
|
|
|
if ($lastExitCode -ne "0") { throw "'git fetch' in $FolderName failed" }
|
2021-09-06 19:59:00 +02:00
|
|
|
|
|
|
|
|
|
$Step++
|
2021-02-28 18:49:53 +01:00
|
|
|
|
}
|
2021-04-21 16:43:08 +02:00
|
|
|
|
[int]$Elapsed = $StopWatch.Elapsed.TotalSeconds
|
2022-11-13 11:22:47 +01:00
|
|
|
|
"✔️ fetched $NumFolders Git repos under 📂$ParentDirName in $Elapsed sec."
|
2021-09-27 10:09:45 +02:00
|
|
|
|
exit 0 # success
|
2021-02-21 12:20:04 +01:00
|
|
|
|
} catch {
|
2022-04-13 12:06:32 +02:00
|
|
|
|
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
2021-02-21 12:20:04 +01:00
|
|
|
|
exit 1
|
2022-08-04 16:23:26 +02:00
|
|
|
|
}
|