forked from fleschutz/PowerShell
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpull-repos.ps1
More file actions
executable file
Β·55 lines (48 loc) Β· 1.93 KB
/
pull-repos.ps1
File metadata and controls
executable file
Β·55 lines (48 loc) Β· 1.93 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
ο»Ώ<#
.SYNOPSIS
Pulls updates into Git repos
.DESCRIPTION
This PowerShell script pulls updates into all Git repositories in a folder (including submodules).
.PARAMETER parentDir
Specifies the path to the parent folder
.EXAMPLE
PS> ./pull-repos C:\MyRepos
β³ (1) Searching for Git executable... git version 2.42.0
β³ (2) Checking parent folder... 33 subfolders
β³ (3/35) Pulling into πbase256unicode...
...
.LINK
https://github.com/fleschutz/PowerShell
.NOTES
Author: Markus Fleschutz | License: CC0
#>
param([string]$parentDir = "$PWD")
try {
$stopWatch = [system.diagnostics.stopwatch]::startNew()
Write-Host "β³ (1) Searching for Git executable...`t`t" -NoNewline
& git --version
if ($lastExitCode -ne "0") { throw "Can't execute 'git' - make sure Git is installed and available" }
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++
}
[int]$elapsed = $stopWatch.Elapsed.TotalSeconds
"βοΈ Pulled updates into $numFolders repos under π$parentDirName ($failed failed, took $elapsed sec)"
exit 0 # success
} catch {
"β οΈ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}