Update new-tag.ps1 and new-branch.ps1

This commit is contained in:
Markus Fleschutz
2021-08-30 12:40:32 +02:00
parent 3f86028fa1
commit e8040b7717
4 changed files with 22 additions and 22 deletions

View File

@ -2,18 +2,18 @@
## Synopsis & Description
```powershell
new-branch.ps1 [<new-branch-name>] [<repo-dir>]
new-branch.ps1 [<BranchName>] [<RepoDir>]
```
Creates and switches to a new branch in a Git repository.
## Syntax & Parameters
```powershell
/home/mf/PowerShell/Scripts/new-branch.ps1 [[-NewBranchName] <String>] [[-RepoDir] <String>] [<CommonParameters>]
/home/mf/PowerShell/Scripts/new-branch.ps1 [[-BranchName] <String>] [[-RepoDir] <String>] [<CommonParameters>]
```
```
-NewBranchName <String>
-BranchName <String>
Required? false
Position? 1

View File

@ -2,18 +2,18 @@
## Synopsis & Description
```powershell
new-tag.ps1 [<new-tag-name>] [<repo-dir>]
new-tag.ps1 [<TagName>] [<RepoDir>]
```
Creates a new tag in a Git repository.
## Syntax & Parameters
```powershell
/home/mf/PowerShell/Scripts/new-tag.ps1 [[-NewTagName] <String>] [[-RepoDir] <String>] [<CommonParameters>]
/home/mf/PowerShell/Scripts/new-tag.ps1 [[-TagName] <String>] [[-RepoDir] <String>] [<CommonParameters>]
```
```
-NewTagName <String>
-TagName <String>
Required? false
Position? 1