From a924f76a99228affe98c650a73cbe436ef607e75 Mon Sep 17 00:00:00 2001 From: Markus Fleschutz Date: Tue, 31 May 2022 16:42:59 +0200 Subject: [PATCH] Update new-branch.ps1 --- Scripts/new-branch.ps1 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Scripts/new-branch.ps1 b/Scripts/new-branch.ps1 index a6d7c9a1..1820a006 100755 --- a/Scripts/new-branch.ps1 +++ b/Scripts/new-branch.ps1 @@ -1,6 +1,6 @@ <# .SYNOPSIS - Create a new Git branch + Creates a new Git branch .DESCRIPTION This PowerShell script creates and switches to a new branch in a Git repository. .PARAMETER NewBranchName @@ -49,7 +49,7 @@ try { $RepoDirName = (get-item "$RepoDir").Name [int]$Elapsed = $StopWatch.Elapsed.TotalSeconds - "✔️ new '$NewBranchName' branch created in 📂$RepoDirName repo based on '$CurrentBranchName' branch in $Elapsed sec" + "✔️ new '$NewBranchName' branch created in 📂$RepoDirName repo in $Elapsed sec (based on '$CurrentBranchName' branch)" exit 0 # success } catch { "⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"