PowerShell/scripts/fetch-repos.ps1

53 lines
1.8 KiB
PowerShell
Raw Normal View History

2023-10-31 12:20:46 +01:00
<#
2021-07-13 21:10:02 +02:00
.SYNOPSIS
Fetches updates into Git repos
2021-07-13 21:10:02 +02:00
.DESCRIPTION
This PowerShell script fetches updates into all Git repositories in a folder (including submodules).
.PARAMETER parentDirPath
2021-10-16 16:50:10 +02:00
Specifies the path to the parent folder
2021-07-13 21:10:02 +02:00
.EXAMPLE
2023-08-06 21:35:36 +02:00
PS> ./fetch-repos.ps1 C:\MyRepos
(1) Searching for Git executable... git version 2.42.0
(2) Checking parent folder... 33 subfolders
(3/35) Fetching into 📂base256unicode...
...
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
#>
2023-09-18 07:54:36 +02:00
param([string]$parentDirPath = "$PWD")
2021-02-21 12:20:04 +01:00
try {
2023-09-18 07:54:36 +02:00
$stopWatch = [system.diagnostics.stopwatch]::startNew()
2021-03-16 08:45:53 +01:00
2023-09-18 07:54:36 +02:00
Write-Host "⏳ (1) Searching for Git executable... " -noNewline
2022-08-04 16:23:26 +02:00
& git --version
if ($lastExitCode -ne "0") { throw "Can't execute 'git' - make sure Git is installed and available" }
2023-09-18 07:54:36 +02:00
Write-Host "⏳ (2) Checking parent folder... " -noNewline
if (-not(Test-Path "$parentDirPath" -pathType container)) { throw "Can't access folder: $parentDirPath" }
$folders = (Get-ChildItem "$parentDirPath" -attributes Directory)
$numFolders = $folders.Count
$parentDirPathName = (Get-Item "$parentDirPath").Name
Write-Host "$numFolders subfolders"
2021-04-22 09:31:58 +02:00
2023-09-18 07:54:36 +02:00
[int]$step = 3
foreach ($folder in $folders) {
$folderName = (Get-Item "$folder").Name
Write-Host "⏳ ($step/$($numFolders + 2)) Fetching into 📂$folderName...`t`t"
2021-04-15 16:54:59 +02:00
2023-09-18 07:54:36 +02:00
& git -C "$folder" fetch --all --recurse-submodules --prune --prune-tags --force
if ($lastExitCode -ne "0") { throw "'git fetch --all' in $folder failed with exit code $lastExitCode" }
2023-09-18 07:54:36 +02:00
$step++
2021-02-28 18:49:53 +01:00
}
2023-09-18 07:54:36 +02:00
[int]$elapsed = $stopWatch.Elapsed.TotalSeconds
"✔️ Fetched updates into $numFolders repos under 📂$parentDirPathName 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-11-18 17:19:22 +01:00
}