How to hotfix TUICars 6M Web Component GO
- Checkout latest stable version by tag: git checkout 9.0
- Create hot fix branch: git checkout -b hotfix/my-bug
- Fix the issue
- Set upstream: git branch --set-upstream hotfix/my-bug origin/hotfix/my-bug
- Push branch to gitlab: git push
- Deploy feature branch to prod via Jenkins
- Set version to next minor release: git tag 9.1
- Merge feature branch into master: git checkout master and git merge hotfix/my-bug
- Push to gitlab: git push
- Push tags to gitlab: git push ––tags