alamb opened a new pull request, #3:
URL: https://github.com/apache/arrow-rs-object-store/pull/3

   - Part of https://github.com/apache/arrow-rs-object-store/issues/2
   
   Moves the contents of `object_store` from https://github.com/apache/arrow-rs 
to this new repository
   
   I followed these instructions (everything I know I learned from stack 
overflow)
   
https://stackoverflow.com/questions/41811986/git-move-directory-to-another-repository-while-keeping-the-history
   
   
   in arrow-rs:
   
   ```shell
   git subtree split -P object_store/ -b alamb/object_store_move
   git push alamb alamb/object_store_move  # push to my own fork
   ```
   
   then in arrow-rs-object-store:
   
   ```shell
   cd arrow-rs-object-store
   git checkout --orphan temp
   git pull https://github.com/alamb/arrow-rs alamb/object_store_move
   git checkout main
   git checkout -b alamb/import
   git merge --allow-unrelated-histories temp    # Merge the unrelated commits 
back
   git branch -d <temp> # cleanup
   ```
   
   I also made a commit to copy over the `.gitignore` file
   
   I checked the code out locally and it seems to work. I plan to port the CI 
as the next PR
   
   
   
   


-- 
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