29 | | After committing a change to main. Switch to the branch you wish to backport to and execute `./backport <full hash of commit to backport>`. You can double check the commit message looks ok, then `git push`. |
| 29 | After committing a change to main. Switch to the branch you wish to backport to and execute `./backport <full hash of commit to backport>`. If there are no conflicts, you can double check the commit message looks ok, then `git push`. |
| 30 | |
| 31 | If there is any conflict, make sure to properly fix it, then run `git add` on the conflicted files, and continue with the cherry pick with `git cherry-pick --continue`. Please note that in this case, you will have to manually amend the commit so it has the proper **branch name prefix** (e.g. `[4.2.x]`). Review your changes, and only then push them upstream. |
| 32 | |