PowerShell/Scripts/clone-repos.ps1

68 lines
2.4 KiB
PowerShell
Raw Normal View History

2021-09-27 10:38:12 +02:00
<#
2021-07-13 21:10:02 +02:00
.SYNOPSIS
2023-04-01 21:44:57 +02:00
Clones popular repos
2021-07-13 21:10:02 +02:00
.DESCRIPTION
2022-12-28 12:42:15 +01:00
This PowerShell script clones popular Git repositories into a target directory.
.PARAMETER targetDir
2023-04-28 07:49:54 +02:00
Specifies the file path to the target directory (current working directory by default)
2021-07-13 21:10:02 +02:00
.EXAMPLE
2022-01-21 20:04:05 +01:00
PS> ./clone-repos C:\Repos
2021-07-13 21:10:02 +02:00
.LINK
https://github.com/fleschutz/PowerShell
2022-01-29 12:47:46 +01:00
.NOTES
2022-04-24 16:24:10 +02:00
Author: Markus Fleschutz | License: CC0
2020-12-29 15:14:21 +01:00
#>
2020-12-01 12:24:56 +01:00
param([string]$TargetDir = "$PWD")
2021-02-28 18:49:53 +01:00
2021-02-13 10:26:14 +01:00
try {
2021-04-21 11:28:12 +02:00
$StopWatch = [system.diagnostics.stopwatch]::startNew()
2022-12-12 19:23:10 +01:00
Write-Host "⏳ (1) Searching for Git executable... " -noNewline
2022-04-24 16:24:10 +02:00
& git --version
2021-04-17 11:29:32 +02:00
if ($lastExitCode -ne "0") { throw "Can't execute 'git' - make sure Git is installed and available" }
2020-12-01 12:24:56 +01:00
2023-04-27 13:07:10 +02:00
Write-Host "⏳ (2) Loading Data/popular-git-repos.csv... " -noNewline
2022-12-28 12:42:15 +01:00
$Table = Import-CSV "$PSScriptRoot/../Data/popular-git-repos.csv"
2022-01-21 20:04:05 +01:00
$NumEntries = $Table.count
2023-04-27 13:07:10 +02:00
Write-Host "$NumEntries Git repos listed"
2021-01-20 16:11:38 +01:00
$TargetDirName = (Get-Item "$TargetDir").Name
Write-Host "⏳ (3) Checking target folder... 📂$TargetDirName"
if (-not(Test-Path "$TargetDir" -pathType container)) { throw "Can't access directory: $TargetDir" }
2022-08-29 13:03:53 +02:00
[int]$Step = 3
2022-01-21 20:04:05 +01:00
[int]$Cloned = 0
[int]$Skipped = 0
2021-01-20 16:11:38 +01:00
foreach($Row in $Table) {
[string]$FolderName = $Row.FOLDERNAME
2023-04-28 07:49:54 +02:00
[string]$Category = $Row.CATEGORY
[string]$Branch = $Row.BRANCH
[string]$Full = $Row.FULL
2021-06-30 18:36:58 +02:00
[string]$URL = $Row.URL
2022-01-21 20:04:05 +01:00
$Step++
2021-06-28 20:58:37 +02:00
if (Test-Path "$TargetDir/$FolderName" -pathType container) {
2023-04-28 07:49:54 +02:00
"⏳ ($Step/$($NumEntries + 4)) Skipping existing 📂$FolderName ($Category)..."
2022-01-21 20:04:05 +01:00
$Skipped++
2021-01-21 15:19:24 +01:00
continue
}
2022-04-27 15:29:06 +02:00
if ($Full -eq "yes") {
2023-04-28 07:49:54 +02:00
"⏳ ($Step/$($NumEntries + 4)) Cloning into 📂$FolderName ($Category) - $Branch branch with full history..."
& git clone --branch "$Branch" --recurse-submodules "$URL" "$TargetDir/$FolderName"
2022-04-27 15:29:06 +02:00
if ($lastExitCode -ne "0") { throw "'git clone --branch $Branch $URL' failed with exit code $lastExitCode" }
} else {
2023-04-28 07:49:54 +02:00
"⏳ ($Step/$($NumEntries + 4)) Cloning into 📂$FolderName ($Category) - $Branch branch only..."
& git clone --branch "$Branch" --single-branch --recurse-submodules "$URL" "$TargetDir/$FolderName"
2022-04-27 15:29:06 +02:00
if ($lastExitCode -ne "0") { throw "'git clone --branch $Branch $URL' failed with exit code $lastExitCode" }
2021-06-30 18:36:58 +02:00
}
2022-01-21 20:04:05 +01:00
$Cloned++
2020-12-01 12:24:56 +01:00
}
2021-04-21 16:43:08 +02:00
[int]$Elapsed = $StopWatch.Elapsed.TotalSeconds
2023-04-28 07:49:54 +02:00
"✔️ cloned $Cloned of $NumEntries Git repos into folder 📂$TargetDirName in $Elapsed sec"
2021-09-27 10:09:45 +02:00
exit 0 # success
2020-12-09 10:30:55 +01:00
} catch {
2022-04-13 12:06:32 +02:00
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
2020-12-09 10:30:55 +01:00
exit 1
}