* capturing the packfile from git-upload-pack @ 2011-04-15 3:22 madmarcos 2011-04-15 15:46 ` Shawn Pearce 0 siblings, 1 reply; 6+ messages in thread From: madmarcos @ 2011-04-15 3:22 UTC (permalink / raw) To: git Hi folks, is there a git command that can capture in a separate file the packfile that is generated and transmitted from a "want"ed branch during the git-upload-pack command? I need a good sample to study. thanks! -- View this message in context: http://git.661346.n2.nabble.com/capturing-the-packfile-from-git-upload-pack-tp6275146p6275146.html Sent from the git mailing list archive at Nabble.com. ^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: capturing the packfile from git-upload-pack 2011-04-15 3:22 capturing the packfile from git-upload-pack madmarcos @ 2011-04-15 15:46 ` Shawn Pearce 2011-04-15 17:46 ` Junio C Hamano 2011-04-16 0:59 ` madmarcos 0 siblings, 2 replies; 6+ messages in thread From: Shawn Pearce @ 2011-04-15 15:46 UTC (permalink / raw) To: madmarcos; +Cc: git On Thu, Apr 14, 2011 at 23:22, madmarcos <fru574@my.utsa.edu> wrote: > is there a git command that can capture in a separate file the packfile that > is generated and transmitted from a "want"ed branch during the > git-upload-pack command? I need a good sample to study. No. But you can create an input file yourself, the pkt-line format is pretty simple. Pipe the input to git-upload-pack, and it will spit back the response. :-) -- Shawn. ^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: capturing the packfile from git-upload-pack 2011-04-15 15:46 ` Shawn Pearce @ 2011-04-15 17:46 ` Junio C Hamano 2011-04-15 19:09 ` Jeff King 2011-04-16 0:59 ` madmarcos 1 sibling, 1 reply; 6+ messages in thread From: Junio C Hamano @ 2011-04-15 17:46 UTC (permalink / raw) To: madmarcos; +Cc: Shawn Pearce, git Shawn Pearce <spearce@spearce.org> writes: > On Thu, Apr 14, 2011 at 23:22, madmarcos <fru574@my.utsa.edu> wrote: >> is there a git command that can capture in a separate file the packfile that >> is generated and transmitted from a "want"ed branch during the >> git-upload-pack command? I need a good sample to study. > > No. > > But you can create an input file yourself, the pkt-line format is > pretty simple. Pipe the input to git-upload-pack, and it will spit > back the response. :-) If you are running 1.7.5-rc0 or newer, GIT_TRACE_PACKET may also be of help. ^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: capturing the packfile from git-upload-pack 2011-04-15 17:46 ` Junio C Hamano @ 2011-04-15 19:09 ` Jeff King 2011-04-15 19:25 ` Jeff King 0 siblings, 1 reply; 6+ messages in thread From: Jeff King @ 2011-04-15 19:09 UTC (permalink / raw) To: Junio C Hamano; +Cc: madmarcos, Shawn Pearce, git On Fri, Apr 15, 2011 at 10:46:28AM -0700, Junio C Hamano wrote: > Shawn Pearce <spearce@spearce.org> writes: > > > On Thu, Apr 14, 2011 at 23:22, madmarcos <fru574@my.utsa.edu> wrote: > >> is there a git command that can capture in a separate file the packfile that > >> is generated and transmitted from a "want"ed branch during the > >> git-upload-pack command? I need a good sample to study. > > > > No. > > > > But you can create an input file yourself, the pkt-line format is > > pretty simple. Pipe the input to git-upload-pack, and it will spit > > back the response. :-) > > If you are running 1.7.5-rc0 or newer, GIT_TRACE_PACKET may also be of > help. Sadly, no. I punted on outputting the actual pack since it is big and binary, and I was only interested in the ref negotiation. My eventual plan was that you could do: GIT_TRACE_PACKET=2 GIT_TRACE_PACKET_PACK=/tmp/foo.pack \ git clone ... and get the ref negotiation on stderr, and the pack dumped in a file. However, there is one stumbling block: the packet tracing happens at a very low level, and doesn't know if we are doing sideband-demuxing or not. And it would need to know to that to put the proper data in the packfile. It may just be a matter of implementing the packfile tracing at a slightly different layer (where we have already demuxed), but I haven't looked closely at it. -Peff ^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: capturing the packfile from git-upload-pack 2011-04-15 19:09 ` Jeff King @ 2011-04-15 19:25 ` Jeff King 0 siblings, 0 replies; 6+ messages in thread From: Jeff King @ 2011-04-15 19:25 UTC (permalink / raw) To: Junio C Hamano; +Cc: madmarcos, Shawn Pearce, git On Fri, Apr 15, 2011 at 03:09:08PM -0400, Jeff King wrote: > On Fri, Apr 15, 2011 at 10:46:28AM -0700, Junio C Hamano wrote: > > > Shawn Pearce <spearce@spearce.org> writes: > > > > > On Thu, Apr 14, 2011 at 23:22, madmarcos <fru574@my.utsa.edu> wrote: > > >> is there a git command that can capture in a separate file the packfile that > > >> is generated and transmitted from a "want"ed branch during the > > >> git-upload-pack command? I need a good sample to study. > > > > > > No. > > > > > > But you can create an input file yourself, the pkt-line format is > > > pretty simple. Pipe the input to git-upload-pack, and it will spit > > > back the response. :-) > > > > If you are running 1.7.5-rc0 or newer, GIT_TRACE_PACKET may also be of > > help. > > Sadly, no. I punted on outputting the actual pack since it is big and > binary, and I was only interested in the ref negotiation. My eventual > plan was that you could do: > > GIT_TRACE_PACKET=2 GIT_TRACE_PACKET_PACK=/tmp/foo.pack \ > git clone ... Actually, thinking on it more, this is kind of stupid. The pack that we fetch will end up in .git/objects/pack, so it's not that interesting to dump (though I suppose in a fetch setting, you might want to actually peek at the thin pack before it gets resolved). More interesting is for the sender to dump the pack they send, which would mean instrumenting pack-objects. Or, as Shawn suggested, poking upload-pack yourself using a conversation you read from GIT_TRACE_PACKET. Which is probably what you meant when you suggested it in the first place. So I'll shut up now. -Peff ^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: capturing the packfile from git-upload-pack 2011-04-15 15:46 ` Shawn Pearce 2011-04-15 17:46 ` Junio C Hamano @ 2011-04-16 0:59 ` madmarcos 1 sibling, 0 replies; 6+ messages in thread From: madmarcos @ 2011-04-16 0:59 UTC (permalink / raw) To: git Thanks, Shawn. Worked like a charm. Sometimes I forget the awesomeness that is Unix. -- View this message in context: http://git.661346.n2.nabble.com/capturing-the-packfile-from-git-upload-pack-tp6275146p6278064.html Sent from the git mailing list archive at Nabble.com. ^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2011-04-16 0:59 UTC | newest] Thread overview: 6+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2011-04-15 3:22 capturing the packfile from git-upload-pack madmarcos 2011-04-15 15:46 ` Shawn Pearce 2011-04-15 17:46 ` Junio C Hamano 2011-04-15 19:09 ` Jeff King 2011-04-15 19:25 ` Jeff King 2011-04-16 0:59 ` madmarcos
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox; as well as URLs for NNTP newsgroup(s).