Description
Create a hotfix branch to fix critical bugs in production.
Steps
Checkout the production branch and pull the latest changes:
git checkout production
git pull origin production
Create a new hotfix branch:
git checkout -b hotfix/bug-description
Fix the bug and commit changes:
git add .
git commit -m "Fix bug-description"
Push the hotfix branch to the remote repository:
git push origin hotfix/bug-description
Open pull requests to merge the hotfix branch into production and development.
Criteria for Success
A new hotfix branch is created and pushed to the remote repository.
Pull requests are opened for merging the hotfix branch into production and development.
Create hotfix branch
Description Create a hotfix branch to fix critical bugs in production.
Steps
production
branch and pull the latest changes:production
anddevelopment
.Criteria for Success A new hotfix branch is created and pushed to the remote repository. Pull requests are opened for merging the hotfix branch into
production
anddevelopment
.