<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/git.git, branch nl/http-proxy-auth</title>
<subtitle>github.com: git/git.git
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/git.git/'/>
<entry>
<title>http: support proxies that require authentication</title>
<updated>2012-03-02T22:40:14+00:00</updated>
<author>
<name>Nelson Benitez Leon</name>
<email>nelsonjesus.benitez@seap.minhap.es</email>
</author>
<published>2012-03-02T13:55:57+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/git.git/commit/?id=dd6139971a18e25a5089c0f96dc80e454683ef0b'/>
<id>dd6139971a18e25a5089c0f96dc80e454683ef0b</id>
<content type='text'>
When the proxy server specified by the http.proxy configuration or the
http_proxy environment variable requires authentication, git failed to
connect to the proxy, because we did not configure the cURL handle with
CURLOPT_PROXYAUTH.

When a proxy is in use, and you tell git that the proxy requires
authentication by having username in the http.proxy configuration, an
extra request needs to be made to the proxy to find out what
authentication method it supports, as this patch uses CURLAUTH_ANY to let
the library pick the most secure method supported by the proxy server.

The extra round-trip adds extra latency, but relieves the user from the
burden to configure a specific authentication method.  If it becomes
problem, a later patch could add a configuration option to specify what
method to use, but let's start simple for the time being.

Signed-off-by: Nelson Benitez Leon &lt;nbenitezl@gmail.com&gt;
Signed-off-by: Junio C Hamano &lt;gitster@pobox.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
When the proxy server specified by the http.proxy configuration or the
http_proxy environment variable requires authentication, git failed to
connect to the proxy, because we did not configure the cURL handle with
CURLOPT_PROXYAUTH.

When a proxy is in use, and you tell git that the proxy requires
authentication by having username in the http.proxy configuration, an
extra request needs to be made to the proxy to find out what
authentication method it supports, as this patch uses CURLAUTH_ANY to let
the library pick the most secure method supported by the proxy server.

The extra round-trip adds extra latency, but relieves the user from the
burden to configure a specific authentication method.  If it becomes
problem, a later patch could add a configuration option to specify what
method to use, but let's start simple for the time being.

Signed-off-by: Nelson Benitez Leon &lt;nbenitezl@gmail.com&gt;
Signed-off-by: Junio C Hamano &lt;gitster@pobox.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Update draft release notes to 1.7.10</title>
<updated>2012-03-02T19:49:41+00:00</updated>
<author>
<name>Junio C Hamano</name>
<email>gitster@pobox.com</email>
</author>
<published>2012-03-02T05:08:07+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/git.git/commit/?id=222433ee4b57750174875ce6b252d10c009a1fa9'/>
<id>222433ee4b57750174875ce6b252d10c009a1fa9</id>
<content type='text'>
Signed-off-by: Junio C Hamano &lt;gitster@pobox.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: Junio C Hamano &lt;gitster@pobox.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'maint'</title>
<updated>2012-03-02T19:49:06+00:00</updated>
<author>
<name>Junio C Hamano</name>
<email>gitster@pobox.com</email>
</author>
<published>2012-03-02T19:49:06+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/git.git/commit/?id=2fa91bd3919f1654d69b43d8c808d7b277c688f5'/>
<id>2fa91bd3919f1654d69b43d8c808d7b277c688f5</id>
<content type='text'>
* maint:
  Documentation: do not assume that n &gt; 1 in &lt;rev&gt;~$n
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* maint:
  Documentation: do not assume that n &gt; 1 in &lt;rev&gt;~$n
</pre>
</div>
</content>
</entry>
<entry>
<title>Documentation: do not assume that n &gt; 1 in &lt;rev&gt;~$n</title>
<updated>2012-03-02T17:33:29+00:00</updated>
<author>
<name>Junio C Hamano</name>
<email>gitster@pobox.com</email>
</author>
<published>2012-02-29T19:13:22+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/git.git/commit/?id=70eb130768d17c33b9efbf60d7953cf6a57daecb'/>
<id>70eb130768d17c33b9efbf60d7953cf6a57daecb</id>
<content type='text'>
We explained &lt;rev&gt;~&lt;n&gt; as &lt;n&gt;th generation grand-parent, but a reader got
confused by the "grand-" part when &lt;n&gt; is 1.

Reword it with "ancestor"; with the "generation" and "following only the
first parents" around there, what we try to describe should be clear
enough now.

Noticed-by: Luke Diamand &lt;luke@diamand.org&gt;
Helped-by: Thomas Rast &lt;trast@inf.ethz.ch&gt;
Helped-by: Andreas Ericsson &lt;ae@op5.se&gt;
Signed-off-by: Junio C Hamano &lt;gitster@pobox.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
We explained &lt;rev&gt;~&lt;n&gt; as &lt;n&gt;th generation grand-parent, but a reader got
confused by the "grand-" part when &lt;n&gt; is 1.

Reword it with "ancestor"; with the "generation" and "following only the
first parents" around there, what we try to describe should be clear
enough now.

Noticed-by: Luke Diamand &lt;luke@diamand.org&gt;
Helped-by: Thomas Rast &lt;trast@inf.ethz.ch&gt;
Helped-by: Andreas Ericsson &lt;ae@op5.se&gt;
Signed-off-by: Junio C Hamano &lt;gitster@pobox.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'cb/fsck-squelch-dangling'</title>
<updated>2012-03-02T04:59:41+00:00</updated>
<author>
<name>Junio C Hamano</name>
<email>gitster@pobox.com</email>
</author>
<published>2012-03-02T04:59:41+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/git.git/commit/?id=7bb3beaf4fe81176aa2946e639ee75b1a9d4744c'/>
<id>7bb3beaf4fe81176aa2946e639ee75b1a9d4744c</id>
<content type='text'>
* cb/fsck-squelch-dangling:
  fsck: --no-dangling omits "dangling object" information
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* cb/fsck-squelch-dangling:
  fsck: --no-dangling omits "dangling object" information
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'rs/no-no-no-parseopt'</title>
<updated>2012-03-02T04:59:31+00:00</updated>
<author>
<name>Junio C Hamano</name>
<email>gitster@pobox.com</email>
</author>
<published>2012-03-02T04:59:31+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/git.git/commit/?id=66b8800e53b20cda13446b462531641884089a77'/>
<id>66b8800e53b20cda13446b462531641884089a77</id>
<content type='text'>
* rs/no-no-no-parseopt:
  parse-options: remove PARSE_OPT_NEGHELP
  parse-options: allow positivation of options starting, with no-
  test-parse-options: convert to OPT_BOOL()

Conflicts:
	builtin/grep.c
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* rs/no-no-no-parseopt:
  parse-options: remove PARSE_OPT_NEGHELP
  parse-options: allow positivation of options starting, with no-
  test-parse-options: convert to OPT_BOOL()

Conflicts:
	builtin/grep.c
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'th/git-diffall'</title>
<updated>2012-03-02T04:59:25+00:00</updated>
<author>
<name>Junio C Hamano</name>
<email>gitster@pobox.com</email>
</author>
<published>2012-03-02T04:59:25+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/git.git/commit/?id=260eb7e38966bdad79aae2e125c9a07b19abd0f8'/>
<id>260eb7e38966bdad79aae2e125c9a07b19abd0f8</id>
<content type='text'>
* th/git-diffall:
  contrib: add git-diffall script
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* th/git-diffall:
  contrib: add git-diffall script
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge the initial l10n effort in</title>
<updated>2012-03-02T04:52:03+00:00</updated>
<author>
<name>Junio C Hamano</name>
<email>gitster@pobox.com</email>
</author>
<published>2012-03-02T04:52:03+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/git.git/commit/?id=bfabdfe2dd2c17a5eff2e41ad537f006376f744f'/>
<id>bfabdfe2dd2c17a5eff2e41ad537f006376f744f</id>
<content type='text'>
* l10n:
  Update l10n guide: change the repository URL, etc
  l10n: leave leading space unchanged for zh_CN.po
  Update l10n guide
  l10n: update Chinese translation to the new git.po
  l10n: Update git.pot (12 new messages)
  l10n: fast-forward here is ff-only merge, not push
  l10n: update zh_CN translation for "Fetching %s"
  l10n: po for zh_CN
  l10n: initial git.pot for 1.7.10 upcoming release
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* l10n:
  Update l10n guide: change the repository URL, etc
  l10n: leave leading space unchanged for zh_CN.po
  Update l10n guide
  l10n: update Chinese translation to the new git.po
  l10n: Update git.pot (12 new messages)
  l10n: fast-forward here is ff-only merge, not push
  l10n: update zh_CN translation for "Fetching %s"
  l10n: po for zh_CN
  l10n: initial git.pot for 1.7.10 upcoming release
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'master' of https://github.com/git-l10n/git-po into l10n</title>
<updated>2012-03-02T04:51:37+00:00</updated>
<author>
<name>Junio C Hamano</name>
<email>gitster@pobox.com</email>
</author>
<published>2012-03-02T04:51:37+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/git.git/commit/?id=11ec817fedd5d861c0424d7e420a157b393587bf'/>
<id>11ec817fedd5d861c0424d7e420a157b393587bf</id>
<content type='text'>
* 'master' of https://github.com/git-l10n/git-po:
  l10n: leave leading space unchanged for zh_CN.po
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* 'master' of https://github.com/git-l10n/git-po:
  l10n: leave leading space unchanged for zh_CN.po
</pre>
</div>
</content>
</entry>
<entry>
<title>Update l10n guide: change the repository URL, etc</title>
<updated>2012-03-02T04:50:49+00:00</updated>
<author>
<name>Jiang Xin</name>
<email>worldhello.net@gmail.com</email>
</author>
<published>2012-03-02T02:29:53+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/git.git/commit/?id=75b182aee702aa82bec81c542788eb9149a68fa0'/>
<id>75b182aee702aa82bec81c542788eb9149a68fa0</id>
<content type='text'>
Host the l10n coordinator repository in a dedicated github organization
account "git-l10n", so that the team may have a more permanent home.
Also add a hint about reference of TEAMS file for l10n contributors.

Update TEAMS file with new zh_CN l10n team members and a repository URL.

Signed-off-by: Jiang Xin &lt;worldhello.net@gmail.com&gt;
Signed-off-by: Junio C Hamano &lt;gitster@pobox.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Host the l10n coordinator repository in a dedicated github organization
account "git-l10n", so that the team may have a more permanent home.
Also add a hint about reference of TEAMS file for l10n contributors.

Update TEAMS file with new zh_CN l10n team members and a repository URL.

Signed-off-by: Jiang Xin &lt;worldhello.net@gmail.com&gt;
Signed-off-by: Junio C Hamano &lt;gitster@pobox.com&gt;
</pre>
</div>
</content>
</entry>
</feed>
