948 B
948 B
Devops Shortcuts
Prerequisites
Devops Workflow Summary
- Create a branch
gits new development-refactoring
- Commit changes and push
- First time
git add . && pal /commit -y && git push --set-upstream origin development-refactoring
- After first time
git add . && pal /commit -y && git push
- First time
- Create PR and merge (e.g. base development branch is protected from direct push)
gits pr create --title 'Update' --base development && gits pr merge --pr-number $(gits pr-latest)
- Deploy Changed to Online App
gits pull development && make update-dev
- More info
- List all available commands
make help
- Read about automated deployment
- List all available commands