←back to thread

197 points kbumsik | 4 comments | | HN request time: 0.981s | source
1. tonymet ◴[] No.41891227[source]
how does it handle incremental changes? If it’s writing your entire repo on a loop, I could see why AWS would promote it.
replies(1): >>41894524 #
2. afro88 ◴[] No.41894524[source]
Looks like it uses bundles, which handle incremental changes: https://github.com/awslabs/git-remote-s3?tab=readme-ov-file#...
replies(2): >>41907242 #>>41956824 #
3. tonymet ◴[] No.41907242[source]
thanks that's why i enjoy hackernews. great help
4. yencabulator ◴[] No.41956824[source]
This invocation won't create an incremental bundle, though:

    git bundle create <sha>.bundle <ref>
https://github.com/awslabs/git-remote-s3/blob/221bde4ea34226...

Needs ^<ref> to leave out things.