755 B
755 B
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 todeployment
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