Initial version BizTalkStatus Tool.
This commit is contained in:
14
tools/Create-Tags.ps1
Normal file
14
tools/Create-Tags.ps1
Normal file
@@ -0,0 +1,14 @@
|
||||
param(
|
||||
[string]$TagPrefix = 'v'
|
||||
)
|
||||
if (!(Get-Command git -ErrorAction SilentlyContinue)) { Write-Host 'git ist nicht installiert oder nicht im PATH.'; exit 1 }
|
||||
|
||||
# Initialisiert ein Repo, committet und erstellt Tags
|
||||
& git init
|
||||
& git add .
|
||||
& git commit -m "Initial import (v1.3.0)"
|
||||
& git tag "${TagPrefix}1.0.0" -m "Baseline"
|
||||
& git tag "${TagPrefix}1.1.0" -m "Textdiff + HTML"
|
||||
& git tag "${TagPrefix}1.2.0" -m "Remote + Logging"
|
||||
& git tag "${TagPrefix}1.3.0" -m "Farben + Releases"
|
||||
Write-Host "Tags erstellt: ${TagPrefix}1.0.0, ${TagPrefix}1.1.0, ${TagPrefix}1.2.0, ${TagPrefix}1.3.0"
|
||||
Reference in New Issue
Block a user