<feed xmlns='http://www.w3.org/2005/Atom'>
<title>git, branch v2.24.0-rc1</title>
<subtitle>Fork of git SCM with my patches.</subtitle>
<id>http://git.kilabit.info/git/atom?h=v2.24.0-rc1</id>
<link rel='self' href='http://git.kilabit.info/git/atom?h=v2.24.0-rc1'/>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/'/>
<updated>2019-10-24T04:34:03Z</updated>
<entry>
<title>Git 2.24-rc1</title>
<updated>2019-10-24T04:34:03Z</updated>
<author>
<name>Junio C Hamano</name>
<email>gitster@pobox.com</email>
</author>
<published>2019-10-24T04:33:49Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/commit/?id=566a1439f6f56c2171b8853ddbca0ad3f5098770'/>
<id>urn:sha1:566a1439f6f56c2171b8853ddbca0ad3f5098770</id>
<content type='text'>
Signed-off-by: Junio C Hamano &lt;gitster@pobox.com&gt;
</content>
</entry>
<entry>
<title>Merge branch 'sg/ci-osx-gcc8-fix'</title>
<updated>2019-10-24T04:34:03Z</updated>
<author>
<name>Junio C Hamano</name>
<email>gitster@pobox.com</email>
</author>
<published>2019-10-24T04:34:03Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/commit/?id=04b1f4f768bc36cc074a311b9c5e339a9fce160a'/>
<id>urn:sha1:04b1f4f768bc36cc074a311b9c5e339a9fce160a</id>
<content type='text'>
CI build fix.

* sg/ci-osx-gcc8-fix:
  ci: fix GCC install in the Travis CI GCC OSX job
</content>
</entry>
<entry>
<title>Merge branch 'ds/feature-macros'</title>
<updated>2019-10-24T04:34:03Z</updated>
<author>
<name>Junio C Hamano</name>
<email>gitster@pobox.com</email>
</author>
<published>2019-10-24T04:34:02Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/commit/?id=4d6fb2beeb80f4899b0267d91c983c91772438f0'/>
<id>urn:sha1:4d6fb2beeb80f4899b0267d91c983c91772438f0</id>
<content type='text'>
The codepath that reads the index.version configuration was broken
with a recent update, which has been corrected.

* ds/feature-macros:
  repo-settings: read an int for index.version
</content>
</entry>
<entry>
<title>Merge branch 'js/azure-ci-osx-fix'</title>
<updated>2019-10-24T04:34:02Z</updated>
<author>
<name>Junio C Hamano</name>
<email>gitster@pobox.com</email>
</author>
<published>2019-10-24T04:34:02Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/commit/?id=5f0b6ed90739f9a62685360be4a30fe0b80ce06a'/>
<id>urn:sha1:5f0b6ed90739f9a62685360be4a30fe0b80ce06a</id>
<content type='text'>
Update installation procedure for Perforce on MacOS in the CI jobs
running on Azure pipelines, which was failing.

* js/azure-ci-osx-fix:
  ci(osx): use new location of the `perforce` cask
</content>
</entry>
<entry>
<title>Merge branch 'bw/format-patch-o-create-leading-dirs'</title>
<updated>2019-10-24T04:34:02Z</updated>
<author>
<name>Junio C Hamano</name>
<email>gitster@pobox.com</email>
</author>
<published>2019-10-24T04:34:02Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/commit/?id=c555caab7a303109d6c712d757bc4621a3ee0bbd'/>
<id>urn:sha1:c555caab7a303109d6c712d757bc4621a3ee0bbd</id>
<content type='text'>
Test update.

* bw/format-patch-o-create-leading-dirs:
  t4014: make output-directory tests self-contained
</content>
</entry>
<entry>
<title>Merge branch 'dl/submodule-set-branch'</title>
<updated>2019-10-24T04:34:02Z</updated>
<author>
<name>Junio C Hamano</name>
<email>gitster@pobox.com</email>
</author>
<published>2019-10-24T04:34:02Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/commit/?id=1b4f85285f438d561d63b7e510e9e244eabc2d80'/>
<id>urn:sha1:1b4f85285f438d561d63b7e510e9e244eabc2d80</id>
<content type='text'>
Test update.

* dl/submodule-set-branch:
  t7419: change test_must_fail to ! for grep
</content>
</entry>
<entry>
<title>repo-settings: read an int for index.version</title>
<updated>2019-10-24T02:33:45Z</updated>
<author>
<name>Derrick Stolee</name>
<email>dstolee@microsoft.com</email>
</author>
<published>2019-10-23T20:38:57Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/commit/?id=c11e9966cb7a2e6b1069df43796815d119cf2d7f'/>
<id>urn:sha1:c11e9966cb7a2e6b1069df43796815d119cf2d7f</id>
<content type='text'>
Several config options were combined into a repo_settings struct in
ds/feature-macros, including a move of the "index.version" config
setting in 7211b9e (repo-settings: consolidate some config settings,
2019-08-13).

Unfortunately, that file looked like a lot of boilerplate and what is
clearly a factor of copy-paste overload, the config setting is parsed
with repo_config_ge_bool() instead of repo_config_get_int(). This means
that a setting "index.version=4" would not register correctly and would
revert to the default version of 3.

I caught this while incorporating v2.24.0-rc0 into the VFS for Git
codebase, where we really care that the index is in version 4.

This was not caught by the codebase because the version checks placed
in t1600-index.sh did not test the "basic" scenario enough. Here, we
modify the test to include these normal settings to not be overridden by
features.manyFiles or GIT_INDEX_VERSION. While the "default" version is
3, this is demoted to version 2 in do_write_index() when not necessary.

Signed-off-by: Derrick Stolee &lt;dstolee@microsoft.com&gt;
Signed-off-by: Junio C Hamano &lt;gitster@pobox.com&gt;
</content>
</entry>
<entry>
<title>ci: fix GCC install in the Travis CI GCC OSX job</title>
<updated>2019-10-24T02:31:07Z</updated>
<author>
<name>SZEDER Gábor</name>
<email>szeder.dev@gmail.com</email>
</author>
<published>2019-10-24T00:20:40Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/commit/?id=7d4733c5019c9dab78583cb1a17a9d83370c2b89'/>
<id>urn:sha1:7d4733c5019c9dab78583cb1a17a9d83370c2b89</id>
<content type='text'>
A few days ago Travis CI updated their existing OSX images, including
the Homebrew database in the xcode10.1 OSX image that we use.  Since
then installing dependencies in the 'osx-gcc' job fails when it tries
to link gcc@8:

  + brew link gcc@8
  Error: No such keg: /usr/local/Cellar/gcc@8

GCC8 is still installed but not linked to '/usr/local' in the updated
image, as it was before this update, but now we have to link it by
running 'brew link gcc'.  So let's do that then, and fall back to
linking gcc@8 if it doesn't, just to be sure.

Our builds on Azure Pipelines are unaffected by this issue.  The OSX
image over there doesn't contain the gcc@8 package, so we have to
'brew install' it, which already takes care of linking it to
'/usr/local'.  After that the 'brew link gcc' command added by this
patch fails, but the ||-chained fallback 'brew link gcc@8' command
succeeds with an "already linked" warning.

Signed-off-by: SZEDER Gábor &lt;szeder.dev@gmail.com&gt;
Signed-off-by: Junio C Hamano &lt;gitster@pobox.com&gt;
</content>
</entry>
<entry>
<title>Eleventh batch</title>
<updated>2019-10-23T05:43:11Z</updated>
<author>
<name>Junio C Hamano</name>
<email>gitster@pobox.com</email>
</author>
<published>2019-10-23T05:42:27Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/commit/?id=d81542e6f3632d1a6185a4e629fade0641f9688b'/>
<id>urn:sha1:d81542e6f3632d1a6185a4e629fade0641f9688b</id>
<content type='text'>
The tenth was at -rc0 ;-)

Signed-off-by: Junio C Hamano &lt;gitster@pobox.com&gt;
</content>
</entry>
<entry>
<title>Merge branch 'cb/pcre2-chartables-leakfix'</title>
<updated>2019-10-23T05:43:11Z</updated>
<author>
<name>Junio C Hamano</name>
<email>gitster@pobox.com</email>
</author>
<published>2019-10-23T05:43:11Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/commit/?id=e0ff2d4c7ec338e30ea5e0340cda7f5fe8a187dc'/>
<id>urn:sha1:e0ff2d4c7ec338e30ea5e0340cda7f5fe8a187dc</id>
<content type='text'>
Leakfix.

* cb/pcre2-chartables-leakfix:
  grep: avoid leak of chartables in PCRE2
  grep: make PCRE2 aware of custom allocator
  grep: make PCRE1 aware of custom allocator
</content>
</entry>
</feed>
