The *clone-repos.ps1* Script =========================== This PowerShell script clones popular Git repositories into a common target directory. Parameters ---------- ```powershell /home/markus/Repos/PowerShell/scripts/clone-repos.ps1 [[-targetDir] ] [] -targetDir Specifies the file path to the target directory (current working directory by default) Required? false Position? 1 Default value "$PWD" Accept pipeline input? false Accept wildcard characters? false [] This script supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. ``` Example ------- ```powershell PS> ./clone-repos C:\MyRepos ⏳ (1) Searching for Git executable... git version 2.46.0.windows.1 ⏳ (2) Reading data/popular-repos.csv... 29 repos ⏳ (3) Checking target folder... 📂Repos ⏳ (4/32) Cloning 📂base256 (dev tool) from git@github.com:fleschutz/talk2windows.git (shallow main branch)... ... ``` Notes ----- Author: Markus Fleschutz | License: CC0 Related Links ------------- https://github.com/fleschutz/PowerShell Script Content -------------- ```powershell <# .SYNOPSIS Clones Git repos .DESCRIPTION This PowerShell script clones popular Git repositories into a common target directory. .PARAMETER targetDir Specifies the file path to the target directory (current working directory by default) .EXAMPLE PS> ./clone-repos C:\MyRepos ⏳ (1) Searching for Git executable... git version 2.46.0.windows.1 ⏳ (2) Reading data/popular-repos.csv... 29 repos ⏳ (3) Checking target folder... 📂Repos ⏳ (4/32) Cloning 📂base256 (dev tool) from git@github.com:fleschutz/talk2windows.git (shallow main branch)... ... .LINK https://github.com/fleschutz/PowerShell .NOTES Author: Markus Fleschutz | License: CC0 #> param([string]$targetDir = "$PWD") try { $stopWatch = [system.diagnostics.stopwatch]::startNew() Write-Host "⏳ (1) Searching for Git executable... " -noNewline & git --version if ($lastExitCode -ne "0") { throw "Can't execute 'git' - make sure Git is installed and available" } Write-Host "⏳ (2) Reading data/popular-repos.csv... " -noNewline $table = Import-CSV "$PSScriptRoot/../data/popular-repos.csv" $total = $table.count Write-Host "$total repos" $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" } [int]$step = 3 [int]$cloned = 0 [int]$skipped = 0 foreach($row in $table) { [string]$folderName = $row.FOLDERNAME [string]$category = $row.CATEGORY [string]$URL = $row.URL [string]$branch = $row.BRANCH [string]$shallow = $row.SHALLOW $step++ if (Test-Path "$targetDir/$folderName" -pathType container) { "⏳ ($step/$($total + 3)) Skipping 📂$folderName ($category): exists already" $skipped++ } elseif ($shallow -eq "yes") { "⏳ ($step/$($total + 3)) Cloning 📂$folderName ($category) from $URL (shallow $branch branch)..." & git clone --branch "$branch" --single-branch --recurse-submodules "$URL" "$targetDir/$folderName" if ($lastExitCode -ne "0") { throw "'git clone --branch $branch $URL' failed with exit code $lastExitCode" } $cloned++ } else { "⏳ ($step/$($total + 3)) Cloning 📂$folderName ($category) from $URL (full $branch branch)..." & git clone --branch "$branch" --recurse-submodules "$URL" "$targetDir/$folderName" if ($lastExitCode -ne "0") { throw "'git clone --branch $branch $URL' failed with exit code $lastExitCode" } $clone++ } } [int]$elapsed = $stopWatch.Elapsed.TotalSeconds "✅ Cloned $cloned additional Git repos into 📂$targetDirName in $($elapsed)s." exit 0 # success } catch { "⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])" exit 1 } ``` *(generated by convert-ps2md.ps1 as of 11/20/2024 11:51:52)*