Default authentication over https?

2016-04-11 Thread Isaac Levy
Hi all, I use a git server which requires authentication over https. Git seems determined to always try an unauthenticated request first, slowing down operations by a couple seconds. Is there a way to configure git to default to authenticated requests? Thanks! Regards, Isaac Levy -- To

Re: Default authentication over https?

2016-04-14 Thread Isaac Levy
After the authenticated request, curl says it's keeping the connection open, but the next fetch seems to do two handshakes again. The unauthenticated request closes the connection, so the 2nd handshake is forced, but I'm not sure why subsequent git fetches still do handshakes. I did a bit of sleu

Bash completion doing full tree traversal?

2013-09-08 Thread Isaac Levy
I experienced a weird stall from git bash completion: $ git add p I did some investigation and found this call trace: + __git_index_files '--others --modified' '' ---> git ls-files --exclude-standard --others --modified This bash function captures output of the git call and strips all but the

Re: Bash completion doing full tree traversal?

2013-09-16 Thread Isaac Levy
I should clarify that I had an untracked directory which contained a significant number of files; I can fix by adding it to gitignore. Still, the long delay & tree traversal were unexpected. Isaac On Sun, Sep 8, 2013 at 2:12 PM, Isaac Levy wrote: > I experienced a weird stall from g