How to migrate from github lfs storage to rudolfs storage? #41
-
I am looking at using rudolfs if standard github lfs becomes too expensive. I see how you can change the URL for the git-lfs server to point it to the rudolfs server, but it's not clear to me how I get the existing files migrated over to the rudolfs storage (e.g. S3). Any tips? Thanks! |
Beta Was this translation helpful? Give feedback.
Answered by
jasonwhite
Jun 5, 2022
Replies: 1 comment 1 reply
-
You can use |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
jasonwhite
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You can use
git lfs fetch --all
to fetch all LFS objects (that are referenced by commits) from GitHub's LFS storage. Then, once those are downloaded, you can change the URL for the LFS server and push them to the new server withgit lfs push --all
.