Re: git bundle format
From: Felipe Contreras <hidden>
Date: 2016-06-15 22:55:25
On Mon, Nov 26, 2012 at 9:50 PM, Pyeron, Jason J CTR (US) [off-list ref] wrote:
quoted
-----Original Message----- From: Felipe Contreras Sent: Monday, November 26, 2012 3:20 PM On Mon, Nov 26, 2012 at 8:24 PM, Pyeron, Jason J CTR (US) [off-list ref] wrote:quoted
I may need to be nudged in a better direction, but please try tounderstand my intentions.quoted
I am facing a situation where I would like to use git bundle but atthe same time inspect the contents to prevent a spillage[1].quoted
<snip/>quoted
quoted
Am I barking up the right tree?Have you tried 'git fast-export'? The output is definitely not human inspectable, but should be relatively easy to parse to generate such a format. And instead of 'git bundle unbundle' you could use 'git fast-import'. or simply do the conversion in your script.No. But I am going to read up on it today. It clearly says "You can use it as a human-readable bundle replacement"[4].
Ah, didn't notice that.
My initial question is does it ever use deltas?
No.
The repositories I just tested it on only seem to output full blobs (which is really nice from this use case point of view).
In my experience it's nice for most use-cases. Since git only deals with full file contents, that makes sense. Cheers. -- Felipe Contreras