kou opened a new issue, #1: URL: https://github.com/apache/arrow-dotnet/issues/1
We need only commits for https://github.com/apache/arrow/tree/main/csharp . 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-dotnet.git cd arrow-dotnet git remote add arrow https://github.com/apache/arrow.git git fetch arrow git switch -c arrow-main-csharp arrow/main git filter-branch --subdirectory-filter csharp git switch main (git log --format=%H --reverse arrow-main-csharp | while read commit; do git cherry-pick $commit; done) git push origin ``` -- 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