Rename to new-branch.ps1 and new-tag.ps1

This commit is contained in:
Markus Fleschutz
2021-08-30 12:31:30 +02:00
parent 3b73961014
commit 5fe7530a59
4 changed files with 7 additions and 7 deletions

View File

@ -1,10 +1,10 @@
<#
.SYNOPSIS
create-branch.ps1 [<new-branch-name>] [<repo-dir>]
new-branch.ps1 [<new-branch-name>] [<repo-dir>]
.DESCRIPTION
Creates and switches to a new branch in a Git repository.
.EXAMPLE
PS> .\create-branch.ps1 moonshot
PS> .\new-branch.ps1 moonshot
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK

View File

@ -1,6 +1,6 @@
<#
.SYNOPSIS
create-tag.ps1 [<new-tag-name>] [<repo-dir>]
new-tag.ps1 [<new-tag-name>] [<repo-dir>]
.DESCRIPTION
Creates a new tag in a Git repository.
.EXAMPLE