OXID-Deployer-Project/provisioning.md

19 lignes
745 B
Markdown
Brut Vue normale Historique

2024-10-18 16:46:34 +02:00
# 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`
2024-10-25 11:17:56 +02:00
- `git switch -c deployment deployment/rel_OXID_7.x`
2024-10-18 16:46:34 +02:00
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`
2024-10-25 11:17:56 +02:00
- `git merge deployment/rel_OXID_7.x`
2024-10-18 16:46:34 +02:00
- `git push origin deployment`
- `git remote rm deployment`