benoit-bremaud / angular-social-network

Angular is better than Somfony
MIT License
1 stars 0 forks source link

Create hotfix branch #15

Open benoit-bremaud opened 4 months ago

benoit-bremaud commented 4 months ago

Create hotfix branch

Description Create a hotfix branch to fix critical bugs in production.

Steps

  1. Checkout the production branch and pull the latest changes:
    git checkout production
    git pull origin production
  2. Create a new hotfix branch:
    git checkout -b hotfix/bug-description
  3. Fix the bug and commit changes:
    git add .
    git commit -m "Fix bug-description"
  4. Push the hotfix branch to the remote repository:
    git push origin hotfix/bug-description
  5. 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.