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 --allgit checkout -b hotfix remotes/us/masterrh deploygit checkout master, git merge hotfixgit branch -d hotfix