<feed xmlns='http://www.w3.org/2005/Atom'>
<title>git, branch v2.32.0-rc1</title>
<subtitle>Fork of git SCM with my patches.</subtitle>
<id>http://git.kilabit.info/git/atom?h=v2.32.0-rc1</id>
<link rel='self' href='http://git.kilabit.info/git/atom?h=v2.32.0-rc1'/>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/'/>
<updated>2021-05-22T09:29:01Z</updated>
<entry>
<title>Git 2.32-rc1</title>
<updated>2021-05-22T09:29:01Z</updated>
<author>
<name>Junio C Hamano</name>
<email>gitster@pobox.com</email>
</author>
<published>2021-05-22T09:27:45Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/commit/?id=de88ac70f3a801262eb3aa087e5d9a712be0a54a'/>
<id>urn:sha1:de88ac70f3a801262eb3aa087e5d9a712be0a54a</id>
<content type='text'>
Signed-off-by: Junio C Hamano &lt;gitster@pobox.com&gt;
</content>
</entry>
<entry>
<title>Merge branch 'dl/stash-show-untracked-fixup'</title>
<updated>2021-05-22T09:29:01Z</updated>
<author>
<name>Junio C Hamano</name>
<email>gitster@pobox.com</email>
</author>
<published>2021-05-22T09:29:01Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/commit/?id=378c7c6ad48c4ccddf9b534616a0e86f28440bd3'/>
<id>urn:sha1:378c7c6ad48c4ccddf9b534616a0e86f28440bd3</id>
<content type='text'>
Another brown paper bag inconsistency fix for a new feature
introduced during this cycle.

* dl/stash-show-untracked-fixup:
  stash show: use stash.showIncludeUntracked even when diff options given
</content>
</entry>
<entry>
<title>Merge branch 'jh/simple-ipc-sans-pthread'</title>
<updated>2021-05-22T09:29:01Z</updated>
<author>
<name>Junio C Hamano</name>
<email>gitster@pobox.com</email>
</author>
<published>2021-05-22T09:29:01Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/commit/?id=6aae0e2ad2fdb5cc87358d7c4337e145c0b99fe9'/>
<id>urn:sha1:6aae0e2ad2fdb5cc87358d7c4337e145c0b99fe9</id>
<content type='text'>
The "simple-ipc" did not compile without pthreads support, but the
build procedure was not properly account for it.

* jh/simple-ipc-sans-pthread:
  simple-ipc: correct ifdefs when NO_PTHREADS is defined
</content>
</entry>
<entry>
<title>Merge branch 'wm/rev-parse-path-format-wo-arg'</title>
<updated>2021-05-22T09:29:00Z</updated>
<author>
<name>Junio C Hamano</name>
<email>gitster@pobox.com</email>
</author>
<published>2021-05-22T09:29:00Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/commit/?id=99fe1c606925ecd427af6e0338ec18936407ba48'/>
<id>urn:sha1:99fe1c606925ecd427af6e0338ec18936407ba48</id>
<content type='text'>
The "rev-parse" command did not diagnose the lack of argument to
"--path-format" option, which was introduced in v2.31 era, which
has been corrected.

* wm/rev-parse-path-format-wo-arg:
  rev-parse: fix segfault with missing --path-format argument
</content>
</entry>
<entry>
<title>stash show: use stash.showIncludeUntracked even when diff options given</title>
<updated>2021-05-22T08:56:46Z</updated>
<author>
<name>Denton Liu</name>
<email>liu.denton@gmail.com</email>
</author>
<published>2021-05-21T10:37:47Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/commit/?id=af5cd44b6f8f1934bc8b91f646eb2e73dcab57f3'/>
<id>urn:sha1:af5cd44b6f8f1934bc8b91f646eb2e73dcab57f3</id>
<content type='text'>
If options pertaining to how the diff is displayed is provided to
`git stash show`, the command will ignore the stash.showIncludeUntracked
configuration variable, defaulting to not showing any untracked files.
This is unintuitive behaviour since the format of the diff output and
whether or not to display untracked files are orthogonal.

Use stash.showIncludeUntracked even when diff options are given. Of
course, this is still overridable via the command-line options.

Update the documentation to explicitly say which configuration variables
will be overridden when a diff options are given.

Signed-off-by: Denton Liu &lt;liu.denton@gmail.com&gt;
Signed-off-by: Junio C Hamano &lt;gitster@pobox.com&gt;
</content>
</entry>
<entry>
<title>simple-ipc: correct ifdefs when NO_PTHREADS is defined</title>
<updated>2021-05-20T22:55:00Z</updated>
<author>
<name>Jeff Hostetler</name>
<email>jeffhost@microsoft.com</email>
</author>
<published>2021-05-20T18:28:10Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/commit/?id=6aac70a870fc40482eca943ff0b64003497d69c1'/>
<id>urn:sha1:6aac70a870fc40482eca943ff0b64003497d69c1</id>
<content type='text'>
Simple IPC always requires threads (in addition to various
platform-specific IPC support).  Fix the ifdefs in the Makefile
to define SUPPORTS_SIMPLE_IPC when appropriate.

Previously, the Unix version of the code would only verify that
Unix domain sockets were available.

This problem was reported here:
https://lore.kernel.org/git/YKN5lXs4AoK%2FJFTO@coredump.intra.peff.net/T/#m08be8f1942ea8a2c36cfee0e51cdf06489fdeafc

Reported-by: Randall S. Becker &lt;rsbecker@nexbridge.com&gt;
Helped-by: Jeff King &lt;peff@peff.net&gt;
Signed-off-by: Jeff Hostetler &lt;jeffhost@microsoft.com&gt;
Signed-off-by: Junio C Hamano &lt;gitster@pobox.com&gt;
</content>
</entry>
<entry>
<title>Merge branch 'ds/sparse-index-protections'</title>
<updated>2021-05-20T20:50:38Z</updated>
<author>
<name>Junio C Hamano</name>
<email>gitster@pobox.com</email>
</author>
<published>2021-05-20T20:50:38Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/commit/?id=107691cb07aab771585844fcd39d5e1c7f1ed14b'/>
<id>urn:sha1:107691cb07aab771585844fcd39d5e1c7f1ed14b</id>
<content type='text'>
Fix access to uninitialized piece of memory, introduced during this
cycle.

* ds/sparse-index-protections:
  sparse-index: fix uninitialized jump
</content>
</entry>
<entry>
<title>Merge branch 'tz/c-locale-output-is-no-more'</title>
<updated>2021-05-20T20:50:32Z</updated>
<author>
<name>Junio C Hamano</name>
<email>gitster@pobox.com</email>
</author>
<published>2021-05-20T20:50:32Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/commit/?id=2b8b1aa6ad9d8d9ba15dbd1c1823b9db71994105'/>
<id>urn:sha1:2b8b1aa6ad9d8d9ba15dbd1c1823b9db71994105</id>
<content type='text'>
Test update.

* tz/c-locale-output-is-no-more:
  t7500: remove non-existant C_LOCALE_OUTPUT prereq
</content>
</entry>
<entry>
<title>Merge branch 'cs/http-use-basic-after-failed-negotiate'</title>
<updated>2021-05-20T20:49:41Z</updated>
<author>
<name>Junio C Hamano</name>
<email>gitster@pobox.com</email>
</author>
<published>2021-05-20T20:48:25Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/commit/?id=c69f2f8c869361e9e2bdb9fb3ceb2fe058013744'/>
<id>urn:sha1:c69f2f8c869361e9e2bdb9fb3ceb2fe058013744</id>
<content type='text'>
Regression fix for a change made during this cycle.

* cs/http-use-basic-after-failed-negotiate:
  Revert "remote-curl: fall back to basic auth if Negotiate fails"
  t5551: test http interaction with credential helpers
</content>
</entry>
<entry>
<title>A handful more topics before -rc1</title>
<updated>2021-05-19T23:55:00Z</updated>
<author>
<name>Junio C Hamano</name>
<email>gitster@pobox.com</email>
</author>
<published>2021-05-19T23:43:22Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/commit/?id=88dd4282d949cdafff516650c1be8aaf4d67983f'/>
<id>urn:sha1:88dd4282d949cdafff516650c1be8aaf4d67983f</id>
<content type='text'>
Signed-off-by: Junio C Hamano &lt;gitster@pobox.com&gt;
</content>
</entry>
</feed>
