<feed xmlns='http://www.w3.org/2005/Atom'>
<title>git, branch v2.23.0-rc1</title>
<subtitle>Fork of git SCM with my patches.</subtitle>
<id>http://git.kilabit.info/git/atom?h=v2.23.0-rc1</id>
<link rel='self' href='http://git.kilabit.info/git/atom?h=v2.23.0-rc1'/>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/'/>
<updated>2019-08-02T20:12:24Z</updated>
<entry>
<title>Git 2.23-rc1</title>
<updated>2019-08-02T20:12:24Z</updated>
<author>
<name>Junio C Hamano</name>
<email>gitster@pobox.com</email>
</author>
<published>2019-08-02T20:12:24Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/commit/?id=7c20df84bd21ec0215358381844274fa10515017'/>
<id>urn:sha1:7c20df84bd21ec0215358381844274fa10515017</id>
<content type='text'>
Signed-off-by: Junio C Hamano &lt;gitster@pobox.com&gt;
</content>
</entry>
<entry>
<title>Merge branch 'sg/fsck-config-in-doc'</title>
<updated>2019-08-02T20:12:03Z</updated>
<author>
<name>Junio C Hamano</name>
<email>gitster@pobox.com</email>
</author>
<published>2019-08-02T20:12:03Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/commit/?id=14fe4af084071803ab4f16e6841ff64ba7351071'/>
<id>urn:sha1:14fe4af084071803ab4f16e6841ff64ba7351071</id>
<content type='text'>
Doc update.

* sg/fsck-config-in-doc:
  Documentation/git-fsck.txt: include fsck.* config variables
</content>
</entry>
<entry>
<title>Merge branch 'js/visual-studio'</title>
<updated>2019-08-02T20:12:02Z</updated>
<author>
<name>Junio C Hamano</name>
<email>gitster@pobox.com</email>
</author>
<published>2019-08-02T20:12:02Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/commit/?id=c62bc49139f1d18e922fc98e35bb08b1aadbcafc'/>
<id>urn:sha1:c62bc49139f1d18e922fc98e35bb08b1aadbcafc</id>
<content type='text'>
Support building Git with Visual Studio

The bits about .git/branches/* have been dropped from the series.
We may want to drop the support for it, but until that happens, the
tests should rely on the existence of the support to pass.

* js/visual-studio: (23 commits)
  git: avoid calling aliased builtins via their dashed form
  bin-wrappers: append `.exe` to target paths if necessary
  .gitignore: ignore Visual Studio's temporary/generated files
  .gitignore: touch up the entries regarding Visual Studio
  vcxproj: also link-or-copy builtins
  msvc: add a Makefile target to pre-generate the Visual Studio solution
  contrib/buildsystems: add a backend for modern Visual Studio versions
  contrib/buildsystems: handle options starting with a slash
  contrib/buildsystems: also handle -lexpat
  contrib/buildsystems: handle libiconv, too
  contrib/buildsystems: handle the curl library option
  contrib/buildsystems: error out on unknown option
  contrib/buildsystems: optionally capture the dry-run in a file
  contrib/buildsystems: redirect errors of the dry run into a log file
  contrib/buildsystems: ignore gettext stuff
  contrib/buildsystems: handle quoted spaces in filenames
  contrib/buildsystems: fix misleading error message
  contrib/buildsystems: ignore irrelevant files in Generators/
  contrib/buildsystems: ignore invalidcontinue.obj
  Vcproj.pm: urlencode '&lt;' and '&gt;' when generating VC projects
  ...
</content>
</entry>
<entry>
<title>Merge branch 'jc/log-mailmap-flip-defaults'</title>
<updated>2019-08-02T20:12:02Z</updated>
<author>
<name>Junio C Hamano</name>
<email>gitster@pobox.com</email>
</author>
<published>2019-08-02T20:12:02Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/commit/?id=9b274e28871b3e4a4109582a34625df5fddc91c8'/>
<id>urn:sha1:9b274e28871b3e4a4109582a34625df5fddc91c8</id>
<content type='text'>
Hotfix for making "git log" use the mailmap by default.

* jc/log-mailmap-flip-defaults:
  log: really flip the --mailmap default
  log: flip the --mailmap default unconditionally
</content>
</entry>
<entry>
<title>Merge branch 'js/early-config-with-onbranch'</title>
<updated>2019-08-02T20:12:02Z</updated>
<author>
<name>Junio C Hamano</name>
<email>gitster@pobox.com</email>
</author>
<published>2019-08-02T20:12:02Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/commit/?id=e46249f73ebddca06cf16c01e8de1f310360c856'/>
<id>urn:sha1:e46249f73ebddca06cf16c01e8de1f310360c856</id>
<content type='text'>
The recently added [includeif "onbranch:branch"] feature does not
work well with an early config mechanism, as it attempts to find
out what branch we are on before we even haven't located the git
repository.  The inclusion during early config scan is ignored to
work around this issue.

* js/early-config-with-onbranch:
  config: work around bug with includeif:onbranch and early config
</content>
</entry>
<entry>
<title>log: really flip the --mailmap default</title>
<updated>2019-08-02T16:55:03Z</updated>
<author>
<name>Junio C Hamano</name>
<email>gitster@pobox.com</email>
</author>
<published>2019-08-01T21:48:34Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/commit/?id=f3eda90ffc10f9152e7492a34408a9f5e4c28b0f'/>
<id>urn:sha1:f3eda90ffc10f9152e7492a34408a9f5e4c28b0f</id>
<content type='text'>
Update the docs, test the interaction between the new default,
configuration and command line option, in addition to actually
flipping the default.

Signed-off-by: Jonathan Nieder &lt;jrnieder@gmail.com&gt;
Signed-off-by: Junio C Hamano &lt;gitster@pobox.com&gt;
</content>
</entry>
<entry>
<title>Merge branch 'jk/repack-silence-auto-bitmap-warning'</title>
<updated>2019-08-01T16:10:50Z</updated>
<author>
<name>Junio C Hamano</name>
<email>gitster@pobox.com</email>
</author>
<published>2019-08-01T16:10:50Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/commit/?id=51cf315870bbb7254ddf06c84fe03b41bc48eebd'/>
<id>urn:sha1:51cf315870bbb7254ddf06c84fe03b41bc48eebd</id>
<content type='text'>
Squelch unneeded and misleading warnings from "repack" when the
command attempts to generate pack bitmaps without explicitly asked
for by the user.

* jk/repack-silence-auto-bitmap-warning:
  repack: simplify handling of auto-bitmaps and .keep files
  repack: silence warnings when auto-enabled bitmaps cannot be built
  t7700: clean up .keep file in bitmap-writing test
</content>
</entry>
<entry>
<title>Merge branch 'jk/sort-iter-test-output'</title>
<updated>2019-08-01T16:10:50Z</updated>
<author>
<name>Junio C Hamano</name>
<email>gitster@pobox.com</email>
</author>
<published>2019-08-01T16:10:50Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/commit/?id=49541dbb36b4a6f68dfe341850aa20dcebbe7641'/>
<id>urn:sha1:49541dbb36b4a6f68dfe341850aa20dcebbe7641</id>
<content type='text'>
* jk/sort-iter-test-output:
  t: sort output of hashmap iteration
</content>
</entry>
<entry>
<title>Merge branch 'jc/dir-iterator-test-fix'</title>
<updated>2019-08-01T16:10:50Z</updated>
<author>
<name>Junio C Hamano</name>
<email>gitster@pobox.com</email>
</author>
<published>2019-08-01T16:10:49Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/commit/?id=cc2a7403fef8c3e19e8d5b3939e5a9ee4789fd86'/>
<id>urn:sha1:cc2a7403fef8c3e19e8d5b3939e5a9ee4789fd86</id>
<content type='text'>
* jc/dir-iterator-test-fix:
  test-dir-iterator: do not assume errno values
</content>
</entry>
<entry>
<title>Merge branch 'bc/hash-independent-tests-part-4'</title>
<updated>2019-08-01T16:10:49Z</updated>
<author>
<name>Junio C Hamano</name>
<email>gitster@pobox.com</email>
</author>
<published>2019-08-01T16:10:49Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/commit/?id=a7b27d9e6d1071ff61a0263a87fac441b8dff11b'/>
<id>urn:sha1:a7b27d9e6d1071ff61a0263a87fac441b8dff11b</id>
<content type='text'>
Update to the tests to help SHA-256 transition continues.

* bc/hash-independent-tests-part-4:
  t2203: avoid hard-coded object ID values
  t1710: make hash independent
  t1007: remove SHA1 prerequisites
  t0090: make test pass with SHA-256
  t0027: make hash size independent
  t6030: make test work with SHA-256
  t5000: make hash independent
  t1450: make hash size independent
  t1410: make hash size independent
  t: add helper to convert object IDs to paths
</content>
</entry>
</feed>
