kszucs opened a new pull request, #13230:
URL: https://github.com/apache/arrow/pull/13230

   Run the following to see what would happens without executing it:
   
   ```
   archery release --jira-cache /tmp/jiracache cherry-pick 9.0.0 
   ```
   
   Try creating a `maint-9.0.0` branch based off of the `master` branch:
   
   ```
   archery release --jira-cache /tmp/jiracache cherry-pick 9.0.0 --execute
   ```
   
   Now there should be the `maint-9.0.0` branch checked out locally. Rerunning 
the previous command with `--continue` option would do nothing since there are 
no new commits to apply:
   
   ```
   archery release --jira-cache /tmp/jiracache cherry-pick 9.0.0 --execute 
--continue
   ```
   
   So simulate new commits be resetting `maint-9.0.0` branch to three commits 
before the current master:
   
   ```
   git branch -f maint-9.0.0 master~3
   ```
   
   Apply the new patches:
   
   ```
   archery release --jira-cache /tmp/jiracache cherry-pick 9.0.0 --execute 
--continue
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to