PowerShell/docs/pull-repos.md

110 lines
3.2 KiB
Markdown
Raw Permalink Normal View History

2024-11-08 12:38:20 +01:00
The *pull-repos.ps1* Script
===========================
2021-11-08 21:36:42 +01:00
2023-08-06 11:42:46 +02:00
This PowerShell script pulls updates into all Git repositories in a folder (including submodules).
2021-11-08 21:36:42 +01:00
2023-07-29 10:04:38 +02:00
Parameters
----------
2021-11-08 21:36:42 +01:00
```powershell
2024-11-08 12:35:11 +01:00
/home/markus/Repos/PowerShell/scripts/pull-repos.ps1 [[-parentDir] <String>] [<CommonParameters>]
2021-11-08 21:36:42 +01:00
2023-10-19 08:12:00 +02:00
-parentDir <String>
2021-11-08 21:36:42 +01:00
Specifies the path to the parent folder
Required? false
Position? 1
Default value "$PWD"
Accept pipeline input? false
Accept wildcard characters? false
[<CommonParameters>]
This script supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction,
WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
```
2023-07-29 10:04:38 +02:00
Example
-------
2021-11-08 21:36:42 +01:00
```powershell
PS> ./pull-repos C:\MyRepos
2024-03-27 17:36:59 +01:00
⏳ (1) Searching for Git executable... git version 2.43.0
2023-10-19 08:12:00 +02:00
⏳ (2) Checking parent folder... 33 subfolders
2023-08-06 11:42:46 +02:00
⏳ (3/35) Pulling into 📂base256unicode...
...
2021-11-08 21:36:42 +01:00
```
2023-07-29 10:04:38 +02:00
Notes
-----
2022-11-17 19:46:02 +01:00
Author: Markus Fleschutz | License: CC0
2021-11-08 21:36:42 +01:00
2023-07-29 10:04:38 +02:00
Related Links
-------------
2021-11-08 21:36:42 +01:00
https://github.com/fleschutz/PowerShell
2023-07-29 10:04:38 +02:00
Script Content
--------------
2022-11-17 20:05:34 +01:00
```powershell
2022-11-17 20:02:26 +01:00
<#
.SYNOPSIS
2023-08-06 11:42:46 +02:00
Pulls updates into Git repos
2022-11-17 20:02:26 +01:00
.DESCRIPTION
2023-08-06 11:42:46 +02:00
This PowerShell script pulls updates into all Git repositories in a folder (including submodules).
2023-10-19 08:12:00 +02:00
.PARAMETER parentDir
2022-11-17 20:02:26 +01:00
Specifies the path to the parent folder
.EXAMPLE
PS> ./pull-repos C:\MyRepos
2024-03-27 17:36:59 +01:00
⏳ (1) Searching for Git executable... git version 2.43.0
2023-10-19 08:12:00 +02:00
⏳ (2) Checking parent folder... 33 subfolders
2023-08-06 11:42:46 +02:00
⏳ (3/35) Pulling into 📂base256unicode...
...
2022-11-17 20:02:26 +01:00
.LINK
https://github.com/fleschutz/PowerShell
.NOTES
Author: Markus Fleschutz | License: CC0
#>
2023-10-19 08:12:00 +02:00
param([string]$parentDir = "$PWD")
2022-11-17 20:02:26 +01:00
try {
2023-10-19 08:12:00 +02:00
$stopWatch = [system.diagnostics.stopwatch]::startNew()
2022-11-17 20:02:26 +01:00
2023-10-19 08:12:00 +02:00
Write-Host "⏳ (1) Searching for Git executable...`t`t" -NoNewline
2022-11-17 20:02:26 +01:00
& git --version
if ($lastExitCode -ne "0") { throw "Can't execute 'git' - make sure Git is installed and available" }
2023-10-19 08:12:00 +02:00
Write-Host "⏳ (2) Checking parent folder...`t`t" -NoNewline
if (-not(Test-Path "$parentDir" -pathType container)) { throw "Can't access folder: $parentDir" }
$folders = (Get-ChildItem "$parentDir" -attributes Directory)
$numFolders = $folders.Count
$parentDirName = (Get-Item "$parentDir").Name
Write-Host "$numFolders subfolders"
[int]$step = 3
[int]$failed = 0
foreach ($folder in $folders) {
$folderName = (Get-Item "$folder").Name
Write-Host "⏳ ($step/$($numFolders + 2)) Pulling into 📂$folderName...`t`t" -NoNewline
& git -C "$folder" pull --recurse-submodules --jobs=4
if ($lastExitCode -ne "0") { $failed++; write-warning "'git pull' in 📂$folderName failed" }
& git -C "$folder" submodule update --init --recursive
if ($lastExitCode -ne "0") { throw "'git submodule update' in 📂$folder failed with exit code $lastExitCode" }
$step++
2022-11-17 20:02:26 +01:00
}
2023-10-19 08:12:00 +02:00
[int]$elapsed = $stopWatch.Elapsed.TotalSeconds
2024-03-27 17:36:59 +01:00
if ($failed -eq 0) {
2024-11-20 11:52:20 +01:00
"✅ Updated $numFolders repos at 📂$parentDir in $($elapsed)s."
2024-03-27 17:36:59 +01:00
exit 0 # success
} else {
2024-11-08 12:35:11 +01:00
"⚠️ Updated $numFolders repos at 📂$parentDir in $($elapsed)s but $failed failed!"
2024-03-27 17:36:59 +01:00
exit 1
}
2022-11-17 20:02:26 +01:00
} catch {
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}
2022-11-17 20:05:34 +01:00
```
2022-11-17 20:02:26 +01:00
2024-11-20 11:52:20 +01:00
*(generated by convert-ps2md.ps1 as of 11/20/2024 11:51:59)*