kou opened a new issue, #1: URL: https://github.com/apache/arrow-java/issues/1
We need only commits for https://github.com/apache/arrow/tree/main/java . Other commits such as commits for `.github/` aren't needed. We need to adjust other files for this repository. We can do this by the following command lines: ```bash git clone g...@github.com:apache/arrow-java.git cd arrow-java git remote add arrow https://github.com/apache/arrow.git git fetch arrow git switch -c arrow-main-java arrow/main git filter-branch --subdirectory-filter java git switch main (git log --format=%H --reverse arrow-main-java | while read commit; do git cherry-pick $commit; done) ``` -- 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: issues-unsubscr...@arrow.apache.org.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org