raulcd opened a new issue, #1:
URL: https://github.com/apache/arrow-skyhook/issues/1

   We only need the commits for 
https://github.com/apache/arrow/tree/196cde38c112d32a944afe978b6da9c7ce935ef7/cpp/src/skyhook
 . 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-skyhook.git
   cd arrow-skyhook
   git remote add arrow https://github.com/apache/arrow.git
   git fetch arrow
   git switch -c arrow-main-skyhook arrow/main
   git filter-branch --subdirectory-filter cpp/src/skyhook
   git switch main
   (git log --format=%H --reverse arrow-main-skyhook | while read commit; do 
git cherry-pick $commit; done)
   git push origin
   ```
   
   The above was adapted from:
   - https://github.com/apache/arrow-swift/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

Reply via email to