Re: Git clone sends first an empty authorization header

2016-03-04 Thread Guilherme
n via an environment variable. And due to the fact that the anonymous login is always the first to be tried, even if the user provides an username/password on the URL I'm not able to retrieve it. On Sat, Mar 5, 2016 at 11:20 AM, Bryan Turner wrote: > On Fri, Mar 4, 2016 at 9:51 PM, Gui

Git clone sends first an empty authorization header

2016-03-04 Thread Guilherme
Hi, When doing basic authentication using git clone by passing the username and password in the url git clone will first send a GET request without the authorization header set. Am i seeing this right? This means that if the counterpart allows anonymous cloning but not pushing and the user provi

Re: git config --get-urlmatch does not set exit code 1 when no match is found

2016-02-29 Thread Guilherme
@Peff Thank you for the heads up. I'm trying to find out if there are any credential helpers configured in the system that will be running tests. On the dedicated test machines that is not a problem but the developer machines are. Should I already post a pre-emptive email asking about the corner

git config --get-urlmatch does not set exit code 1 when no match is found

2016-02-27 Thread Guilherme
Hello, My current woes are with multi-valued configuration values. More specifically credential.helper The documentation of git config says that when a value is not matched it should return 1. To reproduce make sure that credential.helper is not set. git config --get-urlmatch credential.helper

Re: Fwd: git clone does not respect command line options

2016-02-27 Thread Guilherme
What is the current situation if credential.helper is set twice in the same config file. Either [credential] helper = first helper = second or with [credential] helper = first [credenital] helper = second Will both be used by git clone? How do i remove these from the command line? I tr

Re: Fwd: git clone does not respect command line options

2016-02-25 Thread Guilherme
d an extra credential.helper in `--system` that I'm not expecting... On Fri, Feb 26, 2016 at 1:04 PM, Jeff King wrote: > On Fri, Feb 26, 2016 at 12:17:49PM +0530, Guilherme wrote: > >> I'm trying to use git in an integration test and i'm having trouble >> with config

Fwd: git clone does not respect command line options

2016-02-25 Thread Guilherme
Hi! I'm trying to use git in an integration test and i'm having trouble with configuration options. On windows developer machines we use wincred as our credenital helper and thus have it set in ~/.gitconfig For the integration test that is no use as it will make testing unauthorized logging in i

Re: Copyright on wildmatch.c

2015-02-24 Thread Guilherme
This is CC to Anthony Ramine. On Tue, Feb 24, 2015 at 1:34 PM, Guilherme wrote: > This is just an email to all the people i have written in private > about relicensing the files in need in TSS so they can reply to this > email and it be recorded in the mailing list. > > The fi

Re: Copyright on wildmatch.c

2015-02-24 Thread Guilherme
This is just an email to all the people i have written in private about relicensing the files in need in TSS so they can reply to this email and it be recorded in the mailing list. The files are part of ctypes.c hex.c git-compat-util.h. On Tue, Feb 24, 2015 at 1:22 PM, Guilherme wrote: > He

Re: Copyright on wildmatch.c

2015-02-24 Thread Guilherme
Hello, I'm writing to you in regards to the files ctypes.c which you have modified part of in the git project. I'm currently working on integrating gitignore pattern matching into the_sivler_searcher(http://github.com/ggreer/the_silver_searcher). PR https://github.com/ggreer/the_silver_searcher/p

Re: Copyright on wildmatch.c

2015-02-24 Thread Guilherme
anything in those lines for their approval. I hope they all agree. On Tue, Feb 24, 2015 at 10:46 AM, Duy Nguyen wrote: > On Tue, Feb 24, 2015 at 4:29 PM, Guilherme wrote: >> That discussion seems to have just died off. >> >> Whom should i write to about making the license

Re: Copyright on wildmatch.c

2015-02-24 Thread Guilherme
24, 2015 at 9:58 AM, Duy Nguyen wrote: > On Tue, Feb 24, 2015 at 3:08 PM, Guilherme wrote: >> Hello, >> >> I have already posted this to the users mailing list but i guess it's >> more appropriate to have it here. > > Related thread about re

Fwd: Copyright on wildmatch.c

2015-02-24 Thread Guilherme
Hello, I have already posted this to the users mailing list but i guess it's more appropriate to have it here. -- Forwarded message -- From: Guilherme Date: Tue, Feb 24, 2015 at 9:02 AM Subject: Copyright on wildmatch.c To: "git-us...@googlegroups.com" Hello,

Re: git add and git add behave differentely for ignored files

2014-12-04 Thread Guilherme
I forgot to mention: Environment: Cygwin Git version 2.1.1 On Thu, Dec 4, 2014 at 12:11 PM, Konstantin Khomoutov wrote: > On Thu, 4 Dec 2014 10:06:23 +0100 > Guilherme wrote: > >> I reported this issue on the git-user mailing list and they >> redirected me here. >

git add and git add behave differentely for ignored files

2014-12-04 Thread Guilherme
Hello, I reported this issue on the git-user mailing list and they redirected me here. The problem I have observed is that with a ignored path `git add ` behaves differently then `git add `. I my git/info/excludes file i have /COM/config !COM/config/Project.gny The file COM/config/Project.gny

Doing a git add '' will add more files then expected

2014-11-17 Thread Guilherme
probably not as intended. Steps to reproduce: In bash (not sure this is bash specific) do: git add '' (that's to apostrophes, an empty argument) Results same as doing git add . Expected no files added or error about not finding file '' Hope this helps. Guilherme -- To u