Re: [PATCH/RFC 0/4] Add option to enable filters in git-svn

2016-05-31 Thread Matteo Bertini
Il 2016-05-31 20:12 Eric Wong ha scritto: Matteo Bertini wrote: Sorry to all, but I missed a Checksum mismatch error, I'll have a look and submit an update. I've had a look, the problem is a missing smudge filter. Unluckily the small svn revision range i was using was never

Re: [PATCH/RFC 0/4] Add option to enable filters in git-svn

2016-05-31 Thread Matteo Bertini
Sorry to all, but I missed a Checksum mismatch error, I'll have a look and submit an update. Cheers, Matteo -- 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

[PATCH 2/4] Git.pm: Add $path and $enable_filters arguments to hash_and_insert_object.

2016-05-31 Thread Matteo Bertini
From: Matteo Bertini The option $enable_filters skips the --no-filters option, the $path argument provide a path to be used alike the --path argument to hash-object in the non streaming invocation. Signed-off-by: Matteo Bertini --- perl/Git.pm | 19 +-- 1 file changed, 13

[PATCH/RFC 0/4] Add option to enable filters in git-svn

2016-05-31 Thread Matteo Bertini
oding comments (neither Perl or C are my main languages), * user interface (option names, config placements) comments. Best, Matteo Matteo Bertini (4): hash-object.c: Allow distinct file/path in stdin mode too. Git.pm: Add $path and $enable_filters arguments to hash_and_insert_object.

[PATCH 4/4] git-svn.perl: Add git svn init --enable-filters option.

2016-05-31 Thread Matteo Bertini
From: Matteo Bertini The enabled option activates the propagation of the real paths towards hash-object and the removal of the --no-filters option. Signed-off-by: Matteo Bertini --- git-svn.perl | 4 1 file changed, 4 insertions(+) diff --git a/git-svn.perl b/git-svn.perl index 05eced0

[PATCH 1/4] hash-object.c: Allow distinct file/path in stdin mode too.

2016-05-31 Thread Matteo Bertini
From: Matteo Bertini The hash-object command has the --path option to use a name for the filters that is different from the file containing the data. This patch exposes the same functionality for the --stdin-paths, using \t as separator. Signed-off-by: Matteo Bertini --- builtin/hash

[PATCH 3/4] SVN/Fetcher.pm: Add svn-remote..enable-filters to enable the filters.

2016-05-31 Thread Matteo Bertini
From: Matteo Bertini Given the fact that git-svn uses temporary files to build the index, provide the real $path to hash_and_insert_object if the filters are enabled. Signed-off-by: Matteo Bertini --- perl/Git/SVN/Fetcher.pm | 16 1 file changed, 12 insertions(+), 4 deletions