* [PATCH] transport-helper: call git fast-import properly
@ 2012-10-17 8:27 Felipe Contreras
2012-10-18 5:13 ` Sverre Rabbelier
0 siblings, 1 reply; 3+ messages in thread
From: Felipe Contreras @ 2012-10-17 8:27 UTC (permalink / raw)
To: git; +Cc: Junio C Hamano, Sverre Rabbelier, Daniel Barkalow,
Felipe Contreras
The marks options are being ignored right now.
Signed-off-by: Felipe Contreras <felipe.contreras@gmail.com>
---
transport-helper.c | 11 +++++++++--
1 file changed, 9 insertions(+), 2 deletions(-)
diff --git a/transport-helper.c b/transport-helper.c
index cfe0988..29bde0a 100644
--- a/transport-helper.c
+++ b/transport-helper.c
@@ -375,12 +375,19 @@ static int fetch_with_fetch(struct transport *transport,
static int get_importer(struct transport *transport, struct child_process *fastimport)
{
+ struct helper_data *data = transport->data;
struct child_process *helper = get_helper(transport);
+ int argc = 0;
+
memset(fastimport, 0, sizeof(*fastimport));
fastimport->in = helper->out;
fastimport->argv = xcalloc(5, sizeof(*fastimport->argv));
- fastimport->argv[0] = "fast-import";
- fastimport->argv[1] = "--quiet";
+ fastimport->argv[argc++] = "fast-import";
+ fastimport->argv[argc++] = "--quiet";
+ if (data->export_marks)
+ fastimport->argv[argc++] = data->export_marks;
+ if (data->import_marks)
+ fastimport->argv[argc++] = data->import_marks;
fastimport->git_cmd = 1;
return start_command(fastimport);
--
1.8.0.rc2.5.gccf4c94
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH] transport-helper: call git fast-import properly
2012-10-17 8:27 [PATCH] transport-helper: call git fast-import properly Felipe Contreras
@ 2012-10-18 5:13 ` Sverre Rabbelier
2012-10-18 7:39 ` Felipe Contreras
0 siblings, 1 reply; 3+ messages in thread
From: Sverre Rabbelier @ 2012-10-18 5:13 UTC (permalink / raw)
To: Felipe Contreras; +Cc: git, Junio C Hamano, Daniel Barkalow
On Wed, Oct 17, 2012 at 1:27 AM, Felipe Contreras
<felipe.contreras@gmail.com> wrote:
> The marks options are being ignored right now.
It seems unlikely to me that this never worked, surely no reviewer
would accept a patch that doesn't actually implement the feature?
What's the history here?
--
Cheers,
Sverre Rabbelier
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] transport-helper: call git fast-import properly
2012-10-18 5:13 ` Sverre Rabbelier
@ 2012-10-18 7:39 ` Felipe Contreras
0 siblings, 0 replies; 3+ messages in thread
From: Felipe Contreras @ 2012-10-18 7:39 UTC (permalink / raw)
To: Sverre Rabbelier; +Cc: git, Junio C Hamano, Daniel Barkalow
On Thu, Oct 18, 2012 at 7:13 AM, Sverre Rabbelier <srabbelier@gmail.com> wrote:
> On Wed, Oct 17, 2012 at 1:27 AM, Felipe Contreras
> <felipe.contreras@gmail.com> wrote:
>> The marks options are being ignored right now.
>
> It seems unlikely to me that this never worked, surely no reviewer
> would accept a patch that doesn't actually implement the feature?
> What's the history here?
Now I see, the {import,export}-marks options are only meant for
fast-export, for fast-import one should use the 'feature' commands. It
took me a while because the git_remote_helper code for python is very
confusing: it uses testgit.marks for the marks that git generates, and
git.marks for the marks that testgit generates.
It's not very convenient for remote-helpers that can export single
branches as opposed to the whole repo:
http://github.com/felipec/git/commit/0961fdf8231a4ac057eec8a306a708e66f7b6ae9
But it works, so this patch is not needed.
--
Felipe Contreras
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2012-10-18 7:39 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-10-17 8:27 [PATCH] transport-helper: call git fast-import properly Felipe Contreras
2012-10-18 5:13 ` Sverre Rabbelier
2012-10-18 7:39 ` Felipe Contreras
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).