raulcd opened a new issue, #1: URL: https://github.com/apache/arrow-swift/issues/1
We only need the commits for https://github.com/apache/arrow/tree/main/swift . Other commits such as commits for `.github/` aren't necessary. We will need to adjust other files for the repository. We can do this by the following command lines: ```bash git clone g...@github.com:apache/arrow-swift.git cd arrow-swift git remote add arrow https://github.com/apache/arrow.git git fetch arrow git switch -c arrow-main-swift arrow/main git filter-branch --subdirectory-filter swift git switch main (git log --format=%H --reverse arrow-main-swift | while read commit; do git cherry-pick $commit; done) git push origin ``` The above was adapted from: - https://github.com/apache/arrow-js/issues/1 -- 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