ag, **, and the GPL

2014-11-17 Thread Matthew Kaniaris
The Silver Search (https://github.com/ggreer/the_silver_searcher), is
a small, open source, cross platform searching utility written as a
replacement for ack.  One of the major benefits of Ag (and a source
for much of its speed) is that it obeys .gitignore.  However, Ag
currently treats gitignores as regexs which produces incorrect results
for e.g. **.  I'd like to add support to ag to obey the .gitignore
spec but I'm not keen on implementing yet another fnmatch clone.  Ag
is licensed under the Apache License Version 2.0 which to the best of
my understanding is incompatible with the GPLv2.  Would you grant me
permission to reuse wildmatch.c (and necessary includes) for use in
Ag?

-Matt Kaniaris
--
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 1/1] gitk: po/ru.po russian translation typo fixed

2014-11-17 Thread Max Kirillov
On Mon, Nov 17, 2014 at 01:59:28PM +0600, Alex Kuleshov wrote:
 
 Hello Max and Paul,
 
 thank you for your feedback, so what's must be my next workflow? Resend
 patch with Reviewed-By:... or somethine else?

To be honest I don't know. The only time I had such an
answer maintainer put the flag himself at applying patch.

-- 
Max
--
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: ag, **, and the GPL

2014-11-17 Thread Duy Nguyen
On Tue, Nov 18, 2014 at 11:50 AM, Matthew Kaniaris mkania...@gmail.com wrote:
  Would you grant me
 permission to reuse wildmatch.c (and necessary includes) for use in

wildmatch (in git) is originally from rsync. You need to ask them for
permission as well. I'm ok with relicensing my changes in
wildmatch.[ch] to Apache License Version 2.0.
-- 
Duy
--
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] Introduce a hook to run after formatting patches

2014-11-17 Thread Christian Couder
On Mon, Nov 17, 2014 at 8:20 PM, Junio C Hamano gits...@pobox.com wrote:
 Junio C Hamano gits...@pobox.com writes:

 (I am not saying that there should be an easy way to drop cruft left
 by third-party systems such as Change-id: line) ...

 Heh, that was should not be, but I guess it was probably obvious.

 Sorry for the noise.

I am not sure it is very easy yet but as Change-id: ... line are
trailers, you can do that with git interpret-trailers.

For example:

$ echo -e \nChange-id: stuff\nOther: thing  | git -c
trailer.Change-id.ifexists=replace interpret-trailers --trim-empty
--trailer Change-id=

 Other: thing

The idea is that the above command replaces an existing Change-id:
stuff trailer with an empty Change-id: trailer and then removes all
the empty trailers.

Best,
Christian.
--
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


<    1   2