From e8040b771749924538ae98d6eeacbf724d3c6e4c Mon Sep 17 00:00:00 2001 From: Markus Fleschutz Date: Mon, 30 Aug 2021 12:40:32 +0200 Subject: [PATCH] Update new-tag.ps1 and new-branch.ps1 --- Docs/new-branch.ps1.md | 6 +++--- Docs/new-tag.ps1.md | 6 +++--- Scripts/new-branch.ps1 | 16 ++++++++-------- Scripts/new-tag.ps1 | 16 ++++++++-------- 4 files changed, 22 insertions(+), 22 deletions(-) diff --git a/Docs/new-branch.ps1.md b/Docs/new-branch.ps1.md index 318972f3..84c6bd07 100644 --- a/Docs/new-branch.ps1.md +++ b/Docs/new-branch.ps1.md @@ -2,18 +2,18 @@ ## Synopsis & Description ```powershell -new-branch.ps1 [] [] +new-branch.ps1 [] [] ``` Creates and switches to a new branch in a Git repository. ## Syntax & Parameters ```powershell -/home/mf/PowerShell/Scripts/new-branch.ps1 [[-NewBranchName] ] [[-RepoDir] ] [] +/home/mf/PowerShell/Scripts/new-branch.ps1 [[-BranchName] ] [[-RepoDir] ] [] ``` ``` --NewBranchName +-BranchName Required? false Position? 1 diff --git a/Docs/new-tag.ps1.md b/Docs/new-tag.ps1.md index afc47c70..5af4544f 100644 --- a/Docs/new-tag.ps1.md +++ b/Docs/new-tag.ps1.md @@ -2,18 +2,18 @@ ## Synopsis & Description ```powershell -new-tag.ps1 [] [] +new-tag.ps1 [] [] ``` Creates a new tag in a Git repository. ## Syntax & Parameters ```powershell -/home/mf/PowerShell/Scripts/new-tag.ps1 [[-NewTagName] ] [[-RepoDir] ] [] +/home/mf/PowerShell/Scripts/new-tag.ps1 [[-TagName] ] [[-RepoDir] ] [] ``` ``` --NewTagName +-TagName Required? false Position? 1 diff --git a/Scripts/new-branch.ps1 b/Scripts/new-branch.ps1 index 798beb26..a60909f0 100755 --- a/Scripts/new-branch.ps1 +++ b/Scripts/new-branch.ps1 @@ -1,6 +1,6 @@ <# .SYNOPSIS - new-branch.ps1 [] [] + new-branch.ps1 [] [] .DESCRIPTION Creates and switches to a new branch in a Git repository. .EXAMPLE @@ -11,10 +11,10 @@ https://github.com/fleschutz/PowerShell #> -param([string]$NewBranchName = "", [string]$RepoDir = "$PWD") +param([string]$BranchName = "", [string]$RepoDir = "$PWD") try { - if ($NewBranchName -eq "") { $NewBranchName = read-host "Enter new branch name" } + if ($BranchName -eq "") { $BranchName = read-host "Enter new branch name" } $StopWatch = [system.diagnostics.stopwatch]::startNew() @@ -30,17 +30,17 @@ try { & git fetch --all --recurse-submodules --jobs=4 if ($lastExitCode -ne "0") { throw "'git fetch' failed" } - & git checkout -b "$NewBranchName" - if ($lastExitCode -ne "0") { throw "'git checkout -b $NewBranchName' failed" } + & git checkout -b "$BranchName" + if ($lastExitCode -ne "0") { throw "'git checkout -b $BranchName' failed" } - & git push origin "$NewBranchName" - if ($lastExitCode -ne "0") { throw "'git push origin $NewBranchName' failed" } + & git push origin "$BranchName" + if ($lastExitCode -ne "0") { throw "'git push origin $BranchName' failed" } & git submodule update --init --recursive if ($lastExitCode -ne "0") { throw "'git submodule update' failed" } [int]$Elapsed = $StopWatch.Elapsed.TotalSeconds - "✔️ created new branch '$NewBranchName' in Git repository 📂$RepoDirName in $Elapsed sec" + "✔️ created new branch '$BranchName' in Git repository 📂$RepoDirName in $Elapsed sec" exit 0 } catch { write-error "⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])" diff --git a/Scripts/new-tag.ps1 b/Scripts/new-tag.ps1 index 87b653bb..17926a24 100755 --- a/Scripts/new-tag.ps1 +++ b/Scripts/new-tag.ps1 @@ -1,6 +1,6 @@ <# .SYNOPSIS - new-tag.ps1 [] [] + new-tag.ps1 [] [] .DESCRIPTION Creates a new tag in a Git repository. .EXAMPLE @@ -11,10 +11,10 @@ Author: Markus Fleschutz · License: CC0 #> -param([string]$NewTagName = "", [string]$RepoDir = "$PWD") +param([string]$TagName = "", [string]$RepoDir = "$PWD") try { - if ($NewTagName -eq "") { $NewTagName = read-host "Enter new tag name" } + if ($TagName -eq "") { $TagName = read-host "Enter new tag name" } $StopWatch = [system.diagnostics.stopwatch]::startNew() @@ -31,14 +31,14 @@ try { & "$PSScriptRoot/fetch-repo.ps1" if ($lastExitCode -ne "0") { throw "Script 'fetch-repo.ps1' failed" } - & git tag "$NewTagName" - if ($lastExitCode -ne "0") { throw "Error: 'git tag $NewTagName' failed!" } + & git tag "$TagName" + if ($lastExitCode -ne "0") { throw "Error: 'git tag $TagName' failed!" } - & git push origin "$NewTagName" - if ($lastExitCode -ne "0") { throw "Error: 'git push origin $NewTagName' failed!" } + & git push origin "$TagName" + if ($lastExitCode -ne "0") { throw "Error: 'git push origin $TagName' failed!" } [int]$Elapsed = $StopWatch.Elapsed.TotalSeconds - "✔️ created new tag '$NewTagName' in $Elapsed sec" + "✔️ created new tag '$TagName' in $Elapsed sec" exit 0 } catch { write-error "⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"