PowerShell/docs/pull-repo.md

104 lines
3.4 KiB
Markdown
Raw Permalink Normal View History

2024-11-08 12:38:20 +01:00
The *pull-repo.ps1* Script
===========================
2021-11-08 21:36:42 +01:00
2024-05-19 10:25:56 +02:00
This PowerShell script pulls remote updates into a local Git repository (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-repo.ps1 [[-pathToRepo] <String>] [<CommonParameters>]
2021-11-08 21:36:42 +01:00
2024-05-19 10:25:56 +02:00
-pathToRepo <String>
2022-11-17 19:46:02 +01:00
Specifies the file path to the local Git repository (default is working directory)
2021-11-08 21:36:42 +01:00
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
2024-05-19 10:25:56 +02:00
PS> ./pull-repo.ps1
⏳ (1/4) Searching for Git executable... git version 2.44.0.windows.1
2024-08-15 09:51:46 +02:00
⏳ (2/4) Checking local repository... C:\Repos\rust
2024-05-19 10:25:56 +02:00
⏳ (3/4) Pulling remote updates...
2023-09-13 09:49:05 +02:00
⏳ (4/4) Updating submodules...
2024-11-08 12:35:11 +01:00
✅ Updates pulled into 📂rust repo in 14s.
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
2024-05-19 10:25:56 +02:00
Pulls updates into a Git repo
2022-11-17 20:02:26 +01:00
.DESCRIPTION
2024-05-19 10:25:56 +02:00
This PowerShell script pulls remote updates into a local Git repository (including submodules).
.PARAMETER pathToRepo
2022-11-17 20:02:26 +01:00
Specifies the file path to the local Git repository (default is working directory)
.EXAMPLE
2024-05-19 10:25:56 +02:00
PS> ./pull-repo.ps1
⏳ (1/4) Searching for Git executable... git version 2.44.0.windows.1
2024-08-15 09:51:46 +02:00
⏳ (2/4) Checking local repository... C:\Repos\rust
2024-05-19 10:25:56 +02:00
⏳ (3/4) Pulling remote updates...
2023-09-13 09:49:05 +02:00
⏳ (4/4) Updating submodules...
2024-11-08 12:35:11 +01:00
✅ Updates pulled into 📂rust repo in 14s.
2022-11-17 20:02:26 +01:00
.LINK
https://github.com/fleschutz/PowerShell
.NOTES
Author: Markus Fleschutz | License: CC0
#>
2024-05-19 10:25:56 +02:00
param([string]$pathToRepo = "$PWD")
2022-11-17 20:02:26 +01:00
try {
2024-05-19 10:25:56 +02:00
$stopWatch = [system.diagnostics.stopwatch]::startNew()
2022-11-17 20:02:26 +01:00
2023-05-26 12:20:18 +02:00
Write-Host "⏳ (1/4) Searching for Git executable... " -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" }
2024-08-15 09:51:46 +02:00
Write-Host "⏳ (2/4) Checking local repository... $pathToRepo"
2024-05-19 10:25:56 +02:00
if (-not(Test-Path "$pathToRepo" -pathType container)) { throw "Can't access folder: $pathToRepo" }
$result = (git -C "$pathToRepo" status)
if ("$result" -match "HEAD detached at ") { throw "Nothing to pull due to detached HEAD state (not on a branch!)" }
$pathToRepoName = (Get-Item "$pathToRepo").Name
2022-11-17 20:02:26 +01:00
2024-08-15 09:51:46 +02:00
Write-Host "⏳ (3/4) Pulling remote updates... " -noNewline
& git -C "$pathToRepo" remote get-url origin
if ($lastExitCode -ne "0") { throw "'git remote get-url origin' failed with exit code $lastExitCode" }
2024-05-19 10:25:56 +02:00
& git -C "$pathToRepo" pull --recurse-submodules=yes
2022-11-17 20:02:26 +01:00
if ($lastExitCode -ne "0") { throw "'git pull' failed with exit code $lastExitCode" }
2023-05-26 12:20:18 +02:00
Write-Host "⏳ (4/4) Updating submodules... "
2024-05-19 10:25:56 +02:00
& git -C "$pathToRepo" submodule update --init --recursive
2022-11-17 20:02:26 +01:00
if ($lastExitCode -ne "0") { throw "'git submodule update' failed with exit code $lastExitCode" }
2024-05-19 10:25:56 +02:00
[int]$elapsed = $stopWatch.Elapsed.TotalSeconds
2024-11-08 12:35:11 +01:00
"✅ Updates pulled into 📂$pathToRepoName repo in $($elapsed)s."
2022-11-17 20:02:26 +01:00
exit 0 # success
} catch {
2024-08-15 09:51:46 +02:00
"⚠️ Error: $($Error[0]) in script line $($_.InvocationInfo.ScriptLineNumber)"
2022-11-17 20:02:26 +01:00
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)*