Updated new-branch.ps1 and switch-branch.ps1

This commit is contained in:
Markus Fleschutz 2024-05-02 12:12:32 +02:00
parent ef346ea8bc
commit 05fdf8b99c
2 changed files with 16 additions and 14 deletions

View File

@ -1,21 +1,21 @@
<# <#
.SYNOPSIS .SYNOPSIS
Creates a new branch Creates a new Git branch
.DESCRIPTION .DESCRIPTION
This PowerShell script creates a new Git branch in a local repository and switches to it. This PowerShell script creates a new branch in a local Git repository and switches to it.
.PARAMETER newBranch .PARAMETER newBranch
Specifies the new Git branch name (check the allowed characters) Specifies the new Git branch name
.PARAMETER pathToRepo .PARAMETER pathToRepo
Specifies the file path to the local repository (current working directory per default) Specifies the file path to the local Git repository (current working directory per default)
.EXAMPLE .EXAMPLE
PS> ./new-branch.ps1 test123 C:\Repos\rust PS> ./new-branch.ps1 test123 C:\Repos\rust
(1/6) Searching for Git executable... git version 2.42.0.windows.2 (1/6) Searching for Git executable... git version 2.42.0.windows.2
(2/6) Checking Git repository... (2/6) Checking local repository... 📂C:\Repos\rust
(3/6) Fetching updates... (3/6) Fetching remote updates...
(4/6) Creating new branch... (4/6) Creating new branch...
(5/6) Pushing updates... (5/6) Pushing updates...
(6/6) Updating submodules... (6/6) Updating submodules...
Created branch 'test123' in 📂rust repository in 18 sec (based on 'main') Created branch 'test123' in repo 📂rust (based on 'main', took 18s)
.LINK .LINK
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
.NOTES .NOTES
@ -33,11 +33,13 @@ try {
& git --version & git --version
if ($lastExitCode -ne "0") { throw "Can't execute 'git' - make sure Git is installed and available" } if ($lastExitCode -ne "0") { throw "Can't execute 'git' - make sure Git is installed and available" }
Write-Host "⏳ (2/6) Checking Git repository..." Write-Host "⏳ (2/6) Checking local repository... 📂$pathToRepo"
if (-not(Test-Path "$pathToRepo" -pathType container)) { throw "Can't access directory: $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" }
$repoName = (Get-Item "$pathToRepo").Name $repoName = (Get-Item "$pathToRepo").Name
"⏳ (3/6) Fetching updates..." "⏳ (3/6) Fetching remote updates..."
& git -C "$pathToRepo" fetch --all --recurse-submodules --prune --prune-tags --force & git -C "$pathToRepo" fetch --all --recurse-submodules --prune --prune-tags --force
if ($lastExitCode -ne "0") { throw "'git fetch' failed with exit code $lastExitCode" } if ($lastExitCode -ne "0") { throw "'git fetch' failed with exit code $lastExitCode" }
@ -57,7 +59,7 @@ try {
if ($lastExitCode -ne "0") { throw "'git submodule update' failed with exit code $lastExitCode" } if ($lastExitCode -ne "0") { throw "'git submodule update' failed with exit code $lastExitCode" }
[int]$elapsed = $stopWatch.Elapsed.TotalSeconds [int]$elapsed = $stopWatch.Elapsed.TotalSeconds
"✔️ Created branch '$newBranch' in 📂$repoName repository in $elapsed sec (based on '$currentBranch')" "✔️ Created branch '$newBranch' in repo 📂$repoName (based on '$currentBranch', took $($elapsed)s)"
exit 0 # success exit 0 # success
} catch { } catch {
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])" "⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"

View File

@ -4,13 +4,13 @@
.DESCRIPTION .DESCRIPTION
This PowerShell script switches to the given branch in a Git repository (also updates submodules). This PowerShell script switches to the given branch in a Git repository (also updates submodules).
.PARAMETER branchName .PARAMETER branchName
Specifies the branch name to switch to Specifies the Git branch name to switch to
.PARAMETER pathToRepo .PARAMETER pathToRepo
Specifies the file path to the local Git repository Specifies the file path to the local Git repository
.EXAMPLE .EXAMPLE
PS> ./switch-branch main C:\Repos\rust PS> ./switch-branch main C:\Repos\rust
(1/6) Searching for Git executable... git version 2.43.0.windows.1 (1/6) Searching for Git executable... git version 2.43.0.windows.1
(2/6) Checking Git repository... (2/6) Checking local repository... 📂C:\Repos\rust
(3/6) Fetching remote updates... (3/6) Fetching remote updates...
(4/6) Switching to branch 'main'... (4/6) Switching to branch 'main'...
(5/6) Pulling remote updates... (5/6) Pulling remote updates...
@ -35,7 +35,7 @@ try {
Write-Host "⏳ (2/6) Checking local repository... 📂$pathToRepo" Write-Host "⏳ (2/6) Checking local repository... 📂$pathToRepo"
if (-not(Test-Path "$pathToRepo" -pathType container)) { throw "Can't access repo folder: $pathToRepo" } if (-not(Test-Path "$pathToRepo" -pathType container)) { throw "Can't access repo folder: $pathToRepo" }
$result = (git status) $result = (git -C "$pathToRepo" status)
if ($lastExitCode -ne "0") { throw "'git status' in $pathToRepo failed with exit code $lastExitCode" } if ($lastExitCode -ne "0") { throw "'git status' in $pathToRepo failed with exit code $lastExitCode" }
if ("$result" -notmatch "nothing to commit, working tree clean") { throw "Git repository is NOT clean: $result" } if ("$result" -notmatch "nothing to commit, working tree clean") { throw "Git repository is NOT clean: $result" }
$repoDirName = (Get-Item "$pathToRepo").Name $repoDirName = (Get-Item "$pathToRepo").Name