The process '/usr/bin/git' failed with exit code 1
stderr
```
To https://github.com/OSGeo/gdal.git
! [remote rejected] backport-11221-to-release/3.10 -> backport-11221-to-release/3.10 (refusing to allow a Personal Access Token to create or update workflow `.github/workflows/cmake_builds.yml` without `workflow` scope)
error: failed to push some refs to 'https://github.com/OSGeo/gdal.git'
```
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-release/3.10 release/3.10
# Navigate to the new working tree
cd .worktrees/backport-release/3.10
# Create a new branch
git switch --create backport-11221-to-release/3.10
# Cherry-pick the merged commit of this pull request and resolve the conflicts
git cherry-pick 3050b5c7d66bee960bdfe93d216b7a6f1fd35140
# Push it to GitHub
git push --set-upstream origin backport-11221-to-release/3.10
# Go back to the original working tree
cd ../..
# Delete the working tree
git worktree remove .worktrees/backport-release/3.10
Then, create a pull request where the base branch is release/3.10 and the compare/head branch is backport-11221-to-release/3.10.
The backport to
release/3.10
failed:stderr
``` To https://github.com/OSGeo/gdal.git ! [remote rejected] backport-11221-to-release/3.10 -> backport-11221-to-release/3.10 (refusing to allow a Personal Access Token to create or update workflow `.github/workflows/cmake_builds.yml` without `workflow` scope) error: failed to push some refs to 'https://github.com/OSGeo/gdal.git' ```To backport manually, run these commands in your terminal:
Then, create a pull request where the
base
branch isrelease/3.10
and thecompare
/head
branch isbackport-11221-to-release/3.10
.