PowerShell/scripts/new-branch.ps1

70 lines
2.9 KiB
PowerShell
Raw Normal View History

2024-10-01 15:11:03 +02:00
<#
2021-07-13 21:10:02 +02:00
.SYNOPSIS
Creates a new Git branch
2021-10-04 21:29:23 +02:00
.DESCRIPTION
This PowerShell script creates a new branch in a local Git repository and switches to it.
2023-06-22 08:43:11 +02:00
.PARAMETER newBranch
Specifies the new Git branch name
2024-02-22 09:53:55 +01:00
.PARAMETER pathToRepo
Specifies the file path to the local Git repository (current working directory per default)
2021-07-13 21:10:02 +02:00
.EXAMPLE
PS> ./new-branch.ps1 test123
2024-05-23 11:57:52 +02:00
(1/6) Searching for Git executable... git version 2.45.0
2024-08-02 09:17:49 +02:00
(2/6) Checking local repository... C:\Repos\rust
(3/6) Fetching remote updates... git@github.org:rust/rust.git
2023-09-13 09:46:47 +02:00
(4/6) Creating new branch...
(5/6) Pushing updates...
(6/6) Updating submodules...
2024-10-01 13:37:53 +02:00
Created branch 'test123' based on 'main' in 📂rust repo in 18s.
2021-07-13 21:10:02 +02:00
.LINK
https://github.com/fleschutz/PowerShell
2022-01-29 12:47:46 +01:00
.NOTES
2022-03-28 16:21:19 +02:00
Author: Markus Fleschutz | License: CC0
2021-03-31 15:51:55 +02:00
#>
2024-02-22 09:53:55 +01:00
param([string]$newBranch = "", [string]$pathToRepo = "$PWD")
2021-03-31 15:51:55 +02:00
try {
2024-02-22 09:53:55 +01:00
if ($newBranch -eq "") { $newBranch = Read-Host "Enter the new Git branch name" }
2021-07-15 15:51:22 +02:00
2023-06-22 08:43:11 +02:00
$stopWatch = [system.diagnostics.stopwatch]::startNew()
2021-06-18 11:01:51 +02:00
2022-12-14 09:54:40 +01:00
Write-Host "⏳ (1/6) Searching for Git executable... " -noNewline
2022-09-02 13:07:30 +02:00
& git --version
2021-03-31 15:51:55 +02:00
if ($lastExitCode -ne "0") { throw "Can't execute 'git' - make sure Git is installed and available" }
2024-08-02 09:17:49 +02:00
Write-Host "⏳ (2/6) Checking local repository... $pathToRepo"
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-02-22 09:53:55 +01:00
$repoName = (Get-Item "$pathToRepo").Name
2022-09-02 13:07:30 +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-02-22 09:53:55 +01:00
& git -C "$pathToRepo" fetch --all --recurse-submodules --prune --prune-tags --force
2022-04-05 08:48:13 +02:00
if ($lastExitCode -ne "0") { throw "'git fetch' failed with exit code $lastExitCode" }
2021-03-31 16:25:46 +02:00
2024-02-22 09:53:55 +01:00
$currentBranch = (git -C "$pathToRepo" rev-parse --abbrev-ref HEAD)
2022-04-05 08:48:13 +02:00
if ($lastExitCode -ne "0") { throw "'git rev-parse' failed with exit code $lastExitCode" }
2023-09-13 09:46:47 +02:00
"⏳ (4/6) Creating new branch..."
2024-02-22 09:53:55 +01:00
& git -C "$pathToRepo" checkout -b "$newBranch"
2023-06-22 08:43:11 +02:00
if ($lastExitCode -ne "0") { throw "'git checkout -b $newBranch' failed with exit code $lastExitCode" }
2021-03-31 15:51:55 +02:00
2022-11-08 14:41:05 +01:00
"⏳ (5/6) Pushing updates..."
2024-02-22 09:53:55 +01:00
& git -C "$pathToRepo" push origin "$newBranch"
2023-06-22 08:43:11 +02:00
if ($lastExitCode -ne "0") { throw "'git push origin $newBranch' failed with exit code $lastExitCode" }
2021-03-31 15:51:55 +02:00
2022-11-08 14:41:05 +01:00
"⏳ (6/6) Updating submodules..."
2024-02-22 09:53:55 +01:00
& git -C "$pathToRepo" submodule update --init --recursive
2022-04-05 08:48:13 +02:00
if ($lastExitCode -ne "0") { throw "'git submodule update' failed with exit code $lastExitCode" }
2021-03-31 15:51:55 +02:00
2023-06-22 08:43:11 +02:00
[int]$elapsed = $stopWatch.Elapsed.TotalSeconds
2024-10-01 13:37:53 +02:00
"✅ Created branch '$newBranch' based on '$currentBranch' in 📂$repoName repo in $($elapsed)s."
2021-09-27 10:09:45 +02:00
exit 0 # success
2021-03-31 15:51:55 +02:00
} catch {
2022-04-13 12:06:32 +02:00
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
2021-03-31 15:51:55 +02:00
exit 1
2022-09-02 13:07:30 +02:00
}