- Make sure your master branch is in the last version
git checkout master
git pull
- Go to the branch with conflicts
git checkout feature/my-branch
- Solve conflicts locally
git rebase origin/master
- Commit changes
git add .
git commit -m "chore(*): fix merge conflicts"
- Push the solved info to repository
git push -f origin HEAD:feature/my-branch