<feed xmlns='http://www.w3.org/2005/Atom'>
<title>git, branch v1.7.11.7</title>
<subtitle>Fork of git SCM with my patches.</subtitle>
<id>http://git.kilabit.info/git/atom?h=v1.7.11.7</id>
<link rel='self' href='http://git.kilabit.info/git/atom?h=v1.7.11.7'/>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/'/>
<updated>2012-09-15T03:57:23Z</updated>
<entry>
<title>Git 1.7.11.7</title>
<updated>2012-09-15T03:57:23Z</updated>
<author>
<name>Junio C Hamano</name>
<email>gitster@pobox.com</email>
</author>
<published>2012-09-15T03:57:23Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/commit/?id=bafc478f1618534fcb85bedc0fa224bd2d462441'/>
<id>urn:sha1:bafc478f1618534fcb85bedc0fa224bd2d462441</id>
<content type='text'>
Signed-off-by: Junio C Hamano &lt;gitster@pobox.com&gt;
</content>
</entry>
<entry>
<title>Merge branch 'jk/maint-quiet-is-synonym-to-s-in-log' into maint-1.7.11</title>
<updated>2012-09-15T03:48:31Z</updated>
<author>
<name>Junio C Hamano</name>
<email>gitster@pobox.com</email>
</author>
<published>2012-09-15T03:48:31Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/commit/?id=19ece726e194f86b8d316d35b65daa92c245453b'/>
<id>urn:sha1:19ece726e194f86b8d316d35b65daa92c245453b</id>
<content type='text'>
* jk/maint-quiet-is-synonym-to-s-in-log:
  log: fix --quiet synonym for -s
</content>
</entry>
<entry>
<title>Merge branch 'jc/maint-ident-missing-human-name' into maint-1.7.11</title>
<updated>2012-09-15T03:48:22Z</updated>
<author>
<name>Junio C Hamano</name>
<email>gitster@pobox.com</email>
</author>
<published>2012-09-15T03:48:22Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/commit/?id=ddbca33ca7e08d837ab4faa9a7da563f3f7700aa'/>
<id>urn:sha1:ddbca33ca7e08d837ab4faa9a7da563f3f7700aa</id>
<content type='text'>
* jc/maint-ident-missing-human-name:
  split_ident_line(): make best effort when parsing author/committer line
</content>
</entry>
<entry>
<title>Merge branch 'rj/test-regex' into maint-1.7.11</title>
<updated>2012-09-15T03:46:39Z</updated>
<author>
<name>Junio C Hamano</name>
<email>gitster@pobox.com</email>
</author>
<published>2012-09-15T03:46:39Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/commit/?id=dabdc0178ec043ad42f6b3ab80e54f9c9404ab42'/>
<id>urn:sha1:dabdc0178ec043ad42f6b3ab80e54f9c9404ab42</id>
<content type='text'>
* rj/test-regex:
  test-regex: Add a test to check for a bug in the regex routines
</content>
</entry>
<entry>
<title>Merge branch 'da/gitk-reload-tag-contents' into maint-1.7.11</title>
<updated>2012-09-15T03:45:55Z</updated>
<author>
<name>Junio C Hamano</name>
<email>gitster@pobox.com</email>
</author>
<published>2012-09-15T03:45:55Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/commit/?id=f463cc5306dd25844195b167aee4e5642e3bad16'/>
<id>urn:sha1:f463cc5306dd25844195b167aee4e5642e3bad16</id>
<content type='text'>
* da/gitk-reload-tag-contents:
  gitk: Rename 'tagcontents' to 'cached_tagcontent'
  gitk: Teach "Reread references" to reload tags
  gitk: Avoid Meta1-F5
</content>
</entry>
<entry>
<title>Merge branch 'jc/maint-checkout-fileglob-doc' into maint-1.7.11</title>
<updated>2012-09-15T03:45:03Z</updated>
<author>
<name>Junio C Hamano</name>
<email>gitster@pobox.com</email>
</author>
<published>2012-09-15T03:45:03Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/commit/?id=67117596173cc49b0ca4b8b5739c5fd794a7022a'/>
<id>urn:sha1:67117596173cc49b0ca4b8b5739c5fd794a7022a</id>
<content type='text'>
* jc/maint-checkout-fileglob-doc:
  gitcli: contrast wildcard given to shell and to git
  gitcli: formatting fix
  Document file-glob for "git checkout -- '*.c'"
</content>
</entry>
<entry>
<title>Merge branch 'jc/apply-binary-p0' into maint-1.7.11</title>
<updated>2012-09-12T21:00:53Z</updated>
<author>
<name>Junio C Hamano</name>
<email>gitster@pobox.com</email>
</author>
<published>2012-09-12T21:00:52Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/commit/?id=1403db49b80630cf8c36ba3e8b0f085ea0ab8286'/>
<id>urn:sha1:1403db49b80630cf8c36ba3e8b0f085ea0ab8286</id>
<content type='text'>
"git apply -p0" did not parse pathnames on "diff --git" line
correctly.  This caused patches that had pathnames in no other
places to be mistakenly rejected (most notably, binary patch that
does not rename nor change mode).  Textual patches, renames or mode
changes have preimage and postimage pathnames in different places in
a form that can be parsed unambiguously and did not suffer from this
problem.

* jc/apply-binary-p0:
  apply: compute patch-&gt;def_name correctly under -p0
</content>
</entry>
<entry>
<title>Merge branch 'jc/dotdot-is-parent-directory' into maint-1.7.11</title>
<updated>2012-09-12T21:00:34Z</updated>
<author>
<name>Junio C Hamano</name>
<email>gitster@pobox.com</email>
</author>
<published>2012-09-12T21:00:34Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/commit/?id=eaff724bbc9c8f838b6d65fff9959da968939c3a'/>
<id>urn:sha1:eaff724bbc9c8f838b6d65fff9959da968939c3a</id>
<content type='text'>
"git log .." errored out saying it is both rev range and a path when
there is no disambiguating "--" is on the command line.  Update the
command line parser to interpret ".." as a path in such a case.

* jc/dotdot-is-parent-directory:
  specifying ranges: we did not mean to make ".." an empty set
</content>
</entry>
<entry>
<title>Merge branch 'jc/maint-doc-checkout-b-always-takes-branch-name' into maint-1.7.11</title>
<updated>2012-09-12T20:59:58Z</updated>
<author>
<name>Junio C Hamano</name>
<email>gitster@pobox.com</email>
</author>
<published>2012-09-12T20:59:58Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/commit/?id=1b8bc86b5eb86609c31cae48eb7569b24acacc90'/>
<id>urn:sha1:1b8bc86b5eb86609c31cae48eb7569b24acacc90</id>
<content type='text'>
The synopsis said "checkout [-B branch]" to make it clear the
branch name is a parameter to the option, but the heading for the
option description was "-B::", not "-B branch::", making the
documentation misleading.

* jc/maint-doc-checkout-b-always-takes-branch-name:
  doc: "git checkout -b/-B/--orphan" always takes a branch name
</content>
</entry>
<entry>
<title>Merge branch 'jk/maint-http-half-auth-push' into maint-1.7.11</title>
<updated>2012-09-12T20:58:23Z</updated>
<author>
<name>Junio C Hamano</name>
<email>gitster@pobox.com</email>
</author>
<published>2012-09-12T20:58:22Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/commit/?id=7d9483c299b4467fb4c6d32ade8207232235528c'/>
<id>urn:sha1:7d9483c299b4467fb4c6d32ade8207232235528c</id>
<content type='text'>
Pushing to smart HTTP server with recent Git fails without having
the username in the URL to force authentication, if the server is
configured to allow GET anonymously, while requiring authentication
for POST.

* jk/maint-http-half-auth-push:
  http: prompt for credentials on failed POST
  http: factor out http error code handling
  t: test http access to "half-auth" repositories
  t: test basic smart-http authentication
  t/lib-httpd: recognize */smart/* repos as smart-http
  t/lib-httpd: only route auth/dumb to dumb repos
  t5550: factor out http auth setup
  t5550: put auth-required repo in auth/dumb
</content>
</entry>
</feed>
