19 Zeilen
755 B
Markdown
19 Zeilen
755 B
Markdown
|
# Provisioning
|
||
|
|
||
|
## initial
|
||
|
- checkout the customer repository
|
||
|
- `git remote add deployment gitfhfac@git.d3data.de:D3Private/deployerRecipes.git && git remote set-url --push deployment DONTPUSH`
|
||
|
- `git fetch deployment`
|
||
|
- `git switch -c deployment deployment/[template branch]`
|
||
|
checkout remote branch and rename it to `deployment`
|
||
|
- `git push origin deployment`
|
||
|
- `git remote rm deployment`
|
||
|
|
||
|
## update
|
||
|
- checkout the customer repository
|
||
|
- `git checkout deployment && git pull origin deployment`
|
||
|
- `git remote add deployment gitfhfac@git.d3data.de:D3Private/deployerRecipes.git && git remote set-url --push deployment DONTPUSH`
|
||
|
- `git fetch deployment`
|
||
|
- `git merge deployment/[template branch]`
|
||
|
- `git push origin deployment`
|
||
|
- `git remote rm deployment`
|