The process '/usr/bin/git' failed with exit code 1
To backport manually, run these commands in your terminal:
# Fetch latest updates from GitHub
git fetch
# Create a new working tree
git worktree add .worktrees/backport-0.x 0.x
# Navigate to the new working tree
cd .worktrees/backport-0.x
# Create a new branch
git switch --create backport-73-to-0.x
# Cherry-pick the merged commit of this pull request and resolve the conflicts
git cherry-pick ac0e947e7c08e3fc20584806e37d8948a6c2b2fb
# Push it to GitHub
git push --set-upstream origin backport-73-to-0.x
# Go back to the original working tree
cd ../..
# Delete the working tree
git worktree remove .worktrees/backport-0.x
Then, create a pull request where the base branch is 0.x and the compare/head branch is backport-73-to-0.x.
The backport to
0.x
failed:To backport manually, run these commands in your terminal:
Then, create a pull request where the
base
branch is0.x
and thecompare
/head
branch isbackport-73-to-0.x
.