Re: Failure to extra sta...@vger.kernel.org addresses

2012-11-20 Thread Felipe Contreras
On Tue, Nov 20, 2012 at 8:56 AM, Krzysztof Mazur krzys...@podlesie.net wrote: --- a/git-send-email.perl +++ b/git-send-email.perl @@ -925,8 +925,11 @@ sub quote_subject { sub sanitize_address { my ($recipient) = @_; + my $local_part_regexp = qr/[^\s@]+/; + my

Re: Failure to extra sta...@vger.kernel.org addresses

2012-11-20 Thread Andreas Ericsson
On 11/20/2012 11:28 AM, Felipe Contreras wrote: On Tue, Nov 20, 2012 at 8:56 AM, Krzysztof Mazur krzys...@podlesie.net wrote: --- a/git-send-email.perl +++ b/git-send-email.perl @@ -925,8 +925,11 @@ sub quote_subject { sub sanitize_address { my ($recipient) = @_; + my

Re: What's cooking in git.git (Nov 2012, #06; Mon, 19)

2012-11-20 Thread Paul Fox
junio c hamano wrote: [Stalled] * pf/editor-ignore-sigint (2012-11-11) 5 commits - launch_editor: propagate SIGINT from editor to git - run-command: do not warn about child death by SIGINT - run-command: drop silent_exec_failure arg from wait_or_whine - launch_editor: ignore

Re: Failure to extra sta...@vger.kernel.org addresses

2012-11-20 Thread Krzysztof Mazur
On Tue, Nov 20, 2012 at 11:28:39AM +0100, Felipe Contreras wrote: On Tue, Nov 20, 2012 at 8:56 AM, Krzysztof Mazur krzys...@podlesie.net wrote: --- a/git-send-email.perl +++ b/git-send-email.perl @@ -925,8 +925,11 @@ sub quote_subject { sub sanitize_address { my

Re: RFC: Making submodules track branches

2012-11-20 Thread W. Trevor King
On Tue, Nov 20, 2012 at 03:16:35AM -0800, nottrobin wrote: Did any of this ever find its way into the submodule core? I'd like to have a submodule that tracks a branch. In progress. See: http://thread.gmane.org/gmane.comp.version-control.git/208254 Cheers, Trevor -- This email may be

Re: [PATCH v3 1/3] git-submodule add: Add -r/--record option

2012-11-20 Thread W. Trevor King
On Mon, Nov 19, 2012 at 09:39:34PM -0800, Junio C Hamano wrote: W. Trevor King wk...@tremily.us writes: On Mon, Nov 19, 2012 at 04:49:09PM -0800, Junio C Hamano wrote: W. Trevor King wk...@tremily.us writes: ... I think it's best to have users craft their own commit messages

Re: [PATCH 3/4] pathspec: apply *.c optimization from exclude

2012-11-20 Thread Nguyen Thai Ngoc Duy
On Tue, Nov 20, 2012 at 4:20 AM, Junio C Hamano gits...@pobox.com wrote: $ time git rev-list --quiet HEAD -- '*.c' real0m40.770s user0m40.290s sys 0m0.256s With the patch $ time ~/w/git/git rev-list --quiet HEAD -- '*.c' real0m34.288s user0m33.997s sys 0m0.205s

Re: [PATCH] tcsh-completion re-using git-completion.bash

2012-11-20 Thread Marc Khouzam
On Sat, Nov 17, 2012 at 1:01 PM, Felipe Contreras felipe.contre...@gmail.com wrote: I gather that using a wrapper for zsh causes concerns about backwards-compatibility. I don't see any concerns. if [[ -n ${ZSH_VERSION-} ]]; then # replace below by zsh completion commands calling `bash

Re: git merge commits are non-deterministic? what changed?

2012-11-20 Thread Ulrich Spörlein
On Mon, 2012-11-12 at 12:27:31 +0100, Michael J Gruber wrote: Ulrich Spörlein venit, vidit, dixit 09.11.2012 19:27: On Fri, 2012-11-09 at 11:16:47 -0500, Jeff King wrote: On Fri, Nov 09, 2012 at 04:52:48PM +0100, Matthieu Moy wrote: Ulrich Spörlein u...@spoerlein.net writes: 2. Why

Re: [PATCH 3/4] pathspec: apply *.c optimization from exclude

2012-11-20 Thread Junio C Hamano
Nguyen Thai Ngoc Duy pclo...@gmail.com writes: When you come to strcmp(), you see that string_len is 1, pattern_len is 3, and pattern is oob. string+string_len-pattern_len = oob, one past the beginning of the original string foob. They match. Oops? Oops indead. I'll need to check exclude

Re: [PATCH 14/13] test-wildmatch: avoid Windows path mangling

2012-11-20 Thread Junio C Hamano
Johannes Sixt j.s...@viscovery.net writes: From: Nguyễn Thái Ngọc Duy pclo...@gmail.com The MSYS bash mangles arguments that begin with a forward slash when they are passed to test-wildmatch. This causes tests to fail. Avoid mangling by prepending XXX, which is removed by test-wildmatch

Re: [PATCH] git-send-email: don't return undefined value in extract_valid_address()

2012-11-20 Thread Junio C Hamano
Krzysztof Mazur krzys...@podlesie.net writes: In the fallback check, when Email::Valid is not available, the extract_valid_address() does not check for success of matching regex, and $1, which can be undefined, is always returned. Now if match fails an empty string is returned. That much we

Re: git merge commits are non-deterministic? what changed?

2012-11-20 Thread Junio C Hamano
Ulrich Spörlein u...@spoerlein.net writes: But this will never be changed, it would break the fundamental git storage model as it is in place now. It doesn't just break storage model, but more importantly, it breaks the semantics. Imagine that things started breaking after merging your topic

Re: [PATCH] git-send-email: don't return undefined value in extract_valid_address()

2012-11-20 Thread Krzysztof Mazur
On Tue, Nov 20, 2012 at 12:27:36PM -0800, Junio C Hamano wrote: Krzysztof Mazur krzys...@podlesie.net writes: In the fallback check, when Email::Valid is not available, the extract_valid_address() does not check for success of matching regex, and $1, which can be undefined, is always

Re: [PATCH] tcsh-completion re-using git-completion.bash

2012-11-20 Thread Junio C Hamano
Marc Khouzam marc.khou...@gmail.com writes: This one is already merged to 'next'. Awesome! I didn't notice. If I want to suggest an improvement (like checking if the bash script is available), do I just post a patch here? Yes, as a follow-up patch (or two). Thanks. -- To unsubscribe from

Re: Failure to extra sta...@vger.kernel.org addresses

2012-11-20 Thread Krzysztof Mazur
On Tue, Nov 20, 2012 at 08:58:20PM +0100, Andreas Schwab wrote: How about s/(.*?[^]*).*$/$1/? That will still fail on foo@bar foo@bar, but you'll need a full rfc822 parser to handle the general case anyway. That will fail also on something foo@bar. I think it's good compromise between

Re: [PATCH] git-send-email: don't return undefined value in extract_valid_address()

2012-11-20 Thread Junio C Hamano
Krzysztof Mazur krzys...@podlesie.net writes: Yes, it's just to hide the warning, the error (warning in this case) it's already correctly generated: W: unable to extract a valid address from: x a.patch But it is of no use if the message is sent out without the intended recipient, no? It is

Re* [PATCH] gitweb: make remote_heads config setting work.

2012-11-20 Thread Junio C Hamano
Jeff King p...@peff.net writes: On Thu, Nov 08, 2012 at 08:40:11PM -0800, Junio C Hamano wrote: Looking at the code before this part: if (my ($hi, $mi, $lo) = ($key =~ /^([^.]*)\.(.*)\.([^.]*)$/)) { $key = join(., lc($hi), $mi, lc($lo)); } else { $key

git-fetch does not work from .git subdirectory

2012-11-20 Thread Timur Tabi
I was under the impression that git commands which affect repository (as opposed to the local file system) work from any subdirectory inside the repository. For example: [b04825@efes linux.cq-test]$ git log -1 commit f35d179fde24be5e1675b1df9f7a49b8d95561b2 Author: Timur Tabi ti...@freescale.com

Re: [PATCH v5 15/15] fast-export: don't handle uninteresting refs

2012-11-20 Thread Junio C Hamano
Felipe Contreras felipe.contre...@gmail.com writes: Of course, transport-helper shouldn't even be specifying the negative (^) refs, but that's another story. Hrm, I am not sure I understand what you mean by this. How should it be telling the fast-export up to what commit the receiving end

Re: [wishlist] support git flow-like view

2012-11-20 Thread Andrew Ardill
On 21 November 2012 10:42, Lisandro Damián Nicanor Pérez Meyer perezme...@gmail.com wrote: Hi! I am not suscribed to the list, so please CC-me. That is the default etiquette on this list :) I think this may have been proposed before, but I could not find anything in the web, so I better try

Topics currently in the Stalled category

2012-11-20 Thread Junio C Hamano
Here is a list of stalled topics I am having trouble deciding what to do (the default is to dismiss them around feature freeze). * fc/fast-export-fixes (2012-11-08) 14 commits Renaming of remote-testgit feels to be a mistake. It probably should keep its source in remote-testgit.bash and

[BUG] git clean does not remove certain directories

2012-11-20 Thread Soren Brinkmann
Hi, this use case may be a little awkward but this is the behavior I see: I have a repository which has a couple of untracked directories which can also include git repositories. No submodules, though. I used 'git clean -xdf' on the top level of this repo to remove everything untracked in it -

Re: [wishlist] support git flow-like view

2012-11-20 Thread Lisandro Damián Nicanor Pérez Meyer
On Tue 20 Nov 2012 20:56:26 Andrew Ardill escribió: On 21 November 2012 10:42, Lisandro Damián Nicanor Pérez Meyer perezme...@gmail.com wrote: Hi! I am not suscribed to the list, so please CC-me. That is the default etiquette on this list :) Great :-) I think this may have been

Re: [wishlist] support git flow-like view

2012-11-20 Thread Andrew Ardill
On 21 November 2012 11:13, Lisandro Damián Nicanor Pérez Meyer perezme...@gmail.com wrote: ... Well, two ideas come to my mind: - detect when using git flow (.git/config contains [gitflow some_branch] entries). I guess this part is just so the next part can be done automatically? - Show

Re: Topics currently in the Stalled category

2012-11-20 Thread Paul Fox
In-reply-to: 7vobirq0q2.fsf...@alter.siamese.dyndns.org (sfid-20121120_190548_379327_D3EE7D14) References: 7vpq39up0m@alter.siamese.dyndns.org 7vy5hvq1ey@alter.siamese.dyndns.org 7vobirq0q2.fsf...@alter.siamese.dyndns.org (sfid-20121120_190548_379327_D3EE7D14) Fcc: outbox

Re: [PATCH v5 15/15] fast-export: don't handle uninteresting refs

2012-11-20 Thread Jonathan Nieder
Junio C Hamano wrote: Felipe Contreras felipe.contre...@gmail.com writes: Of course, transport-helper shouldn't even be specifying the negative (^) refs, but that's another story. Hrm, I am not sure I understand what you mean by this. How should it be telling the fast-export up to what

Re: [PATCH v5 15/15] fast-export: don't handle uninteresting refs

2012-11-20 Thread Felipe Contreras
On Wed, Nov 21, 2012 at 5:17 AM, Jonathan Nieder jrnie...@gmail.com wrote: Junio C Hamano wrote: Felipe Contreras felipe.contre...@gmail.com writes: Of course, transport-helper shouldn't even be specifying the negative (^) refs, but that's another story. Hrm, I am not sure I understand what

RE: [BUG] git clean does not remove certain directories

2012-11-20 Thread Soren Brinkmann
Hi, this use case may be a little awkward but this is the behavior I see: I have a repository which has a couple of untracked directories which can also include git repositories. No submodules, though. I used 'git clean -xdf' on the top level of this repo to remove everything untracked in

Re: [PATCH v5 15/15] fast-export: don't handle uninteresting refs

2012-11-20 Thread Junio C Hamano
Jonathan Nieder jrnie...@gmail.com writes: Never mind that others have said that that's not the current interface (I don't yet see why it would be a good interface after a transition, but maybe it would be). Still, hopefully that clarifies the intended meaning. Care to explain how the

To find other pictures of celebrities

2012-11-20 Thread burlet87
To find other pictures of celebrities, you can also check out weekly tabloid magazines. You may not be able to afford the exact same [url=http://www.linksoflondonsweetiebracelets.co.uk/]links of london bracelets[/url] these people are wearing, but you easily keep up with the latest styles this

[PATCH 14/13] test-wildmatch: avoid Windows path mangling

2012-11-20 Thread Johannes Sixt
From: Nguyễn Thái Ngọc Duy pclo...@gmail.com The MSYS bash mangles arguments that begin with a forward slash when they are passed to test-wildmatch. This causes tests to fail. Avoid mangling by prepending XXX, which is removed by test-wildmatch before further processing. [J6t: reworded commit

Re: [wishlist] support git flow-like view

2012-11-20 Thread Johannes Sixt
Am 11/21/2012 1:13, schrieb Lisandro Damián Nicanor Pérez Meyer: I think the best mock-up would be: http://nvie.com/img/2009/12/Screen-shot-2009-12-24-at-11.32.03.png Yes, I'm referring to swim-lanes like view. Which may be already there and I'm miserably failing to see :-/ Maybe you are

Re: [PATCH v5 15/15] fast-export: don't handle uninteresting refs

2012-11-20 Thread Felipe Contreras
On Wed, Nov 21, 2012 at 6:08 AM, Junio C Hamano gits...@pobox.com wrote: I see Felipe keeps repeating that there are bugs, and keeps posting patches to change fast-export, but I haven't seen a concrete No, the reason why you see these problems is because you are not using the interface

a menagerie of crystal animals

2012-11-20 Thread patteu39
a menagerie of crystal animals, grinding and abrasive tools, glass reflectors for the road and rail, nor the production of faucets and knobs for both doors and cabinetry.[url=http://www.bijouxswarovskiboutique.com/]bijoux swarovski[/url]is considered by many people to be the finest quality,