Hotfix
- fetch all remotes:
git fetch --all
- create hotfix branch from prod: git
git checkout -b hotfix remotes/us/master
- commit
- release:
rh deploy
- merge to master:
git checkout master
,git merge hotfix
- delete hotfix:
git branch -d hotfix
Hotfix
git fetch --all
git checkout -b hotfix remotes/us/master
rh deploy
git checkout master
, git merge hotfix
git branch -d hotfix