2021-09-27 10:38:12 +02:00
|
|
|
|
<#
|
2021-07-13 21:10:02 +02:00
|
|
|
|
.SYNOPSIS
|
2022-03-28 14:32:54 +02:00
|
|
|
|
Lists the submodules in a Git repository
|
2021-07-13 21:10:02 +02:00
|
|
|
|
.DESCRIPTION
|
2022-03-28 14:32:54 +02:00
|
|
|
|
This PowerShell script lists the submodules in the given Git repository.
|
2021-10-15 23:09:08 +02:00
|
|
|
|
.PARAMETER RepoDir
|
2022-03-28 14:32:54 +02:00
|
|
|
|
Specifies the path to the repository (current working directory by default)
|
2021-07-13 21:10:02 +02:00
|
|
|
|
.EXAMPLE
|
2021-09-24 17:19:49 +02:00
|
|
|
|
PS> ./list-submodules C:\MyRepo
|
2021-07-13 21:10:02 +02:00
|
|
|
|
.LINK
|
|
|
|
|
https://github.com/fleschutz/PowerShell
|
2022-01-29 12:47:46 +01:00
|
|
|
|
.NOTES
|
2022-09-06 21:42:04 +02:00
|
|
|
|
Author: Markus Fleschutz | License: CC0
|
2021-05-06 16:58:24 +02:00
|
|
|
|
#>
|
|
|
|
|
|
2021-07-15 15:51:22 +02:00
|
|
|
|
param([string]$RepoDir = "$PWD")
|
2021-05-06 16:58:24 +02:00
|
|
|
|
|
|
|
|
|
try {
|
2022-12-29 14:06:54 +01:00
|
|
|
|
Write-Host "⏳ (1/4) Searching for Git executable... " -noNewline
|
2022-03-28 14:32:54 +02:00
|
|
|
|
& git --version
|
2021-05-06 16:58:24 +02:00
|
|
|
|
if ($lastExitCode -ne "0") { throw "Can't execute 'git' - make sure Git is installed and available" }
|
|
|
|
|
|
2022-12-29 14:06:54 +01:00
|
|
|
|
$RepoDirName = (Get-Item "$RepoDir").Name
|
|
|
|
|
Write-Host "⏳ (2/4) Checking Git repository... 📂$RepoDirName"
|
|
|
|
|
if (-not(Test-Path "$RepoDir" -pathType container)) { throw "Can't access folder: $RepoDir" }
|
|
|
|
|
|
|
|
|
|
Write-Host "⏳ (3/4) Fetching latest updates... "
|
2022-03-28 14:32:54 +02:00
|
|
|
|
& git -C "$RepoDir" fetch
|
2021-05-06 17:10:00 +02:00
|
|
|
|
if ($lastExitCode -ne "0") { throw "'git fetch' failed" }
|
|
|
|
|
|
2022-12-29 14:06:54 +01:00
|
|
|
|
Write-Host "⏳ (4/4) Listing submodules... "
|
2022-03-28 14:32:54 +02:00
|
|
|
|
& git -C "$RepoDir" submodule
|
2021-05-06 16:58:24 +02:00
|
|
|
|
if ($lastExitCode -ne "0") { throw "'git submodule' failed" }
|
|
|
|
|
|
2021-09-27 10:09:45 +02:00
|
|
|
|
exit 0 # success
|
2021-05-06 16:58:24 +02:00
|
|
|
|
} catch {
|
2022-04-13 12:06:32 +02:00
|
|
|
|
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
2021-05-06 16:58:24 +02:00
|
|
|
|
exit 1
|
|
|
|
|
}
|