[PATCH] transport-helper: call git fast-import properly

2012-10-17 Thread Felipe Contreras
The marks options are being ignored right now.

Signed-off-by: Felipe Contreras 
---
 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

--
To unsubscribe from this list: send the line "unsubscribe git" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


Re: [PATCH] transport-helper: call git fast-import properly

2012-10-17 Thread Sverre Rabbelier
On Wed, Oct 17, 2012 at 1:27 AM, Felipe Contreras
 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
--
To unsubscribe from this list: send the line "unsubscribe git" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


Re: [PATCH] transport-helper: call git fast-import properly

2012-10-18 Thread Felipe Contreras
On Thu, Oct 18, 2012 at 7:13 AM, Sverre Rabbelier  wrote:
> On Wed, Oct 17, 2012 at 1:27 AM, Felipe Contreras
>  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
--
To unsubscribe from this list: send the line "unsubscribe git" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html