PowerShell/docs/new-branch.md

132 lines
4.6 KiB
Markdown
Raw Permalink Normal View History

2024-11-08 12:38:20 +01:00
The *new-branch.ps1* Script
===========================
2021-11-08 21:36:42 +01:00
2024-05-19 10:25:56 +02:00
This PowerShell script creates a new branch in a local Git repository and switches to it.
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/new-branch.ps1 [[-newBranch] <String>] [[-pathToRepo] <String>] [<CommonParameters>]
2021-11-08 21:36:42 +01:00
2023-07-29 09:45:37 +02:00
-newBranch <String>
2024-05-19 10:25:56 +02:00
Specifies the new Git branch name
2021-11-08 21:36:42 +01:00
Required? false
Position? 1
Default value
Accept pipeline input? false
Accept wildcard characters? false
2024-03-27 17:36:59 +01:00
-pathToRepo <String>
2024-05-19 10:25:56 +02:00
Specifies the file path to the local Git repository (current working directory per default)
2021-11-08 21:36:42 +01:00
Required? false
Position? 2
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-08-15 09:51:46 +02:00
PS> ./new-branch.ps1 test123
⏳ (1/6) Searching for Git executable... git version 2.45.0
⏳ (2/6) Checking local repository... C:\Repos\rust
⏳ (3/6) Fetching remote updates... git@github.org:rust/rust.git
2023-09-13 09:49:05 +02:00
⏳ (4/6) Creating new branch...
⏳ (5/6) Pushing updates...
⏳ (6/6) Updating submodules...
2024-11-08 12:35:11 +01:00
✅ Created branch 'test123' based on 'main' in 📂rust repo in 18s.
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
Creates a new Git branch
2022-11-17 20:02:26 +01:00
.DESCRIPTION
2024-05-19 10:25:56 +02:00
This PowerShell script creates a new branch in a local Git repository and switches to it.
2023-07-29 09:45:37 +02:00
.PARAMETER newBranch
2024-05-19 10:25:56 +02:00
Specifies the new Git branch name
2024-03-27 17:36:59 +01:00
.PARAMETER pathToRepo
2024-05-19 10:25:56 +02:00
Specifies the file path to the local Git repository (current working directory per default)
2022-11-17 20:02:26 +01:00
.EXAMPLE
2024-08-15 09:51:46 +02:00
PS> ./new-branch.ps1 test123
⏳ (1/6) Searching for Git executable... git version 2.45.0
⏳ (2/6) Checking local repository... C:\Repos\rust
⏳ (3/6) Fetching remote updates... git@github.org:rust/rust.git
2023-09-13 09:49:05 +02:00
⏳ (4/6) Creating new branch...
⏳ (5/6) Pushing updates...
⏳ (6/6) Updating submodules...
2024-11-08 12:35:11 +01:00
✅ Created branch 'test123' based on 'main' in 📂rust repo in 18s.
2022-11-17 20:02:26 +01:00
.LINK
https://github.com/fleschutz/PowerShell
.NOTES
Author: Markus Fleschutz | License: CC0
#>
2024-03-27 17:36:59 +01:00
param([string]$newBranch = "", [string]$pathToRepo = "$PWD")
2022-11-17 20:02:26 +01:00
try {
2024-03-27 17:36:59 +01:00
if ($newBranch -eq "") { $newBranch = Read-Host "Enter the new Git branch name" }
2022-11-17 20:02:26 +01:00
2023-07-29 09:45:37 +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/6) 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/6) Checking local repository... $pathToRepo"
2024-05-19 10:25:56 +02:00
if (-not(Test-Path "$pathToRepo" -pathType container)) { throw "Can't access repo folder: $pathToRepo" }
$result = (git -C "$pathToRepo" status)
if ($lastExitCode -ne "0") { throw "'git status' in $pathToRepo failed with exit code $lastExitCode" }
2024-03-27 17:36:59 +01:00
$repoName = (Get-Item "$pathToRepo").Name
2022-11-17 20:02:26 +01:00
2024-08-15 09:51:46 +02:00
Write-Host "⏳ (3/6) Fetching 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-03-27 17:36:59 +01:00
& git -C "$pathToRepo" fetch --all --recurse-submodules --prune --prune-tags --force
2022-11-17 20:02:26 +01:00
if ($lastExitCode -ne "0") { throw "'git fetch' failed with exit code $lastExitCode" }
2024-03-27 17:36:59 +01:00
$currentBranch = (git -C "$pathToRepo" rev-parse --abbrev-ref HEAD)
2022-11-17 20:02:26 +01:00
if ($lastExitCode -ne "0") { throw "'git rev-parse' failed with exit code $lastExitCode" }
2023-09-13 09:49:05 +02:00
"⏳ (4/6) Creating new branch..."
2024-03-27 17:36:59 +01:00
& git -C "$pathToRepo" checkout -b "$newBranch"
2023-07-29 09:45:37 +02:00
if ($lastExitCode -ne "0") { throw "'git checkout -b $newBranch' failed with exit code $lastExitCode" }
2022-11-17 20:02:26 +01:00
"⏳ (5/6) Pushing updates..."
2024-03-27 17:36:59 +01:00
& git -C "$pathToRepo" push origin "$newBranch"
2023-07-29 09:45:37 +02:00
if ($lastExitCode -ne "0") { throw "'git push origin $newBranch' failed with exit code $lastExitCode" }
2022-11-17 20:02:26 +01:00
"⏳ (6/6) Updating submodules..."
2024-03-27 17:36:59 +01: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" }
2023-07-29 09:45:37 +02:00
[int]$elapsed = $stopWatch.Elapsed.TotalSeconds
2024-11-08 12:35:11 +01:00
"✅ Created branch '$newBranch' based on '$currentBranch' in 📂$repoName repo in $($elapsed)s."
2022-11-17 20:02:26 +01:00
exit 0 # success
} catch {
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
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:57)*