<feed xmlns='http://www.w3.org/2005/Atom'>
<title>git, branch v2.25.0-rc0</title>
<subtitle>Fork of git SCM with my patches.</subtitle>
<id>http://git.kilabit.info/git/atom?h=v2.25.0-rc0</id>
<link rel='self' href='http://git.kilabit.info/git/atom?h=v2.25.0-rc0'/>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/'/>
<updated>2019-12-25T19:22:02Z</updated>
<entry>
<title>Git 2.25-rc0</title>
<updated>2019-12-25T19:22:02Z</updated>
<author>
<name>Junio C Hamano</name>
<email>gitster@pobox.com</email>
</author>
<published>2019-12-25T19:21:28Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/commit/?id=99c33bed562b41de6ce9bd3fd561303d39645048'/>
<id>urn:sha1:99c33bed562b41de6ce9bd3fd561303d39645048</id>
<content type='text'>
Signed-off-by: Junio C Hamano &lt;gitster@pobox.com&gt;
</content>
</entry>
<entry>
<title>Merge branch 'en/fill-directory-fixes'</title>
<updated>2019-12-25T19:22:02Z</updated>
<author>
<name>Junio C Hamano</name>
<email>gitster@pobox.com</email>
</author>
<published>2019-12-25T19:22:02Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/commit/?id=d2189a721cc08b78b63853b8aa825dc828e835cf'/>
<id>urn:sha1:d2189a721cc08b78b63853b8aa825dc828e835cf</id>
<content type='text'>
Assorted fixes to the directory traversal API.

* en/fill-directory-fixes:
  dir.c: use st_add3() for allocation size
  dir: consolidate similar code in treat_directory()
  dir: synchronize treat_leading_path() and read_directory_recursive()
  dir: fix checks on common prefix directory
  dir: break part of read_directory_recursive() out for reuse
  dir: exit before wildcard fall-through if there is no wildcard
  dir: remove stray quote character in comment
  Revert "dir.c: make 'git-status --ignored' work within leading directories"
  t3011: demonstrate directory traversal failures
</content>
</entry>
<entry>
<title>Merge branch 'rs/test-cleanup'</title>
<updated>2019-12-25T19:22:01Z</updated>
<author>
<name>Junio C Hamano</name>
<email>gitster@pobox.com</email>
</author>
<published>2019-12-25T19:22:01Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/commit/?id=8be0a428d65e48f42e4600ab0fc91109777d85e1'/>
<id>urn:sha1:8be0a428d65e48f42e4600ab0fc91109777d85e1</id>
<content type='text'>
Test cleanup.

* rs/test-cleanup:
  t6030: don't create unused file
  t5580: don't create unused file
  t3501: don't create unused file
  t7004: don't create unused file
  t4256: don't create unused file
</content>
</entry>
<entry>
<title>Merge branch 'mr/bisect-save-pointer-to-const-string'</title>
<updated>2019-12-25T19:22:01Z</updated>
<author>
<name>Junio C Hamano</name>
<email>gitster@pobox.com</email>
</author>
<published>2019-12-25T19:22:01Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/commit/?id=65099bd7752362df440571881d4a2825c7cd8d5d'/>
<id>urn:sha1:65099bd7752362df440571881d4a2825c7cd8d5d</id>
<content type='text'>
Code cleanup.

* mr/bisect-save-pointer-to-const-string:
  bisect--helper: convert `*_warning` char pointers to char arrays.
</content>
</entry>
<entry>
<title>Merge branch 'rs/xdiff-ignore-ws-w-func-context'</title>
<updated>2019-12-25T19:22:01Z</updated>
<author>
<name>Junio C Hamano</name>
<email>gitster@pobox.com</email>
</author>
<published>2019-12-25T19:22:01Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/commit/?id=c0c6a7459410592a7c9ae95080e349015b890900'/>
<id>urn:sha1:c0c6a7459410592a7c9ae95080e349015b890900</id>
<content type='text'>
Extend test coverage for a recent fix.

* rs/xdiff-ignore-ws-w-func-context:
  t4015: improve coverage of function context test
</content>
</entry>
<entry>
<title>Merge branch 'js/add-p-in-c'</title>
<updated>2019-12-25T19:22:01Z</updated>
<author>
<name>Junio C Hamano</name>
<email>gitster@pobox.com</email>
</author>
<published>2019-12-25T19:22:00Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/commit/?id=45b96a6fa1ce2009f82d2ea1698b49fda0c11169'/>
<id>urn:sha1:45b96a6fa1ce2009f82d2ea1698b49fda0c11169</id>
<content type='text'>
The effort to move "git-add--interactive" to C continues.

* js/add-p-in-c:
  built-in add -p: show helpful hint when nothing can be staged
  built-in add -p: only show the applicable parts of the help text
  built-in add -p: implement the 'q' ("quit") command
  built-in add -p: implement the '/' ("search regex") command
  built-in add -p: implement the 'g' ("goto") command
  built-in add -p: implement hunk editing
  strbuf: add a helper function to call the editor "on an strbuf"
  built-in add -p: coalesce hunks after splitting them
  built-in add -p: implement the hunk splitting feature
  built-in add -p: show different prompts for mode changes and deletions
  built-in app -p: allow selecting a mode change as a "hunk"
  built-in add -p: handle deleted empty files
  built-in add -p: support multi-file diffs
  built-in add -p: offer a helpful error message when hunk navigation failed
  built-in add -p: color the prompt and the help text
  built-in add -p: adjust hunk headers as needed
  built-in add -p: show colored hunks by default
  built-in add -i: wire up the new C code for the `patch` command
  built-in add -i: start implementing the `patch` functionality in C
</content>
</entry>
<entry>
<title>Merge branch 'jc/drop-gen-hdrs'</title>
<updated>2019-12-25T19:22:00Z</updated>
<author>
<name>Junio C Hamano</name>
<email>gitster@pobox.com</email>
</author>
<published>2019-12-25T19:22:00Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/commit/?id=ccc292e8620ecea28044166ac1189ccf6edfc6c7'/>
<id>urn:sha1:ccc292e8620ecea28044166ac1189ccf6edfc6c7</id>
<content type='text'>
Code cleanup.

* jc/drop-gen-hdrs:
  Makefile: drop GEN_HDRS
</content>
</entry>
<entry>
<title>Merge branch 'ja/doc-markup-cleanup'</title>
<updated>2019-12-25T19:22:00Z</updated>
<author>
<name>Junio C Hamano</name>
<email>gitster@pobox.com</email>
</author>
<published>2019-12-25T19:22:00Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/commit/?id=dfee504bee4353fd7cede8b11e0090e20c69a032'/>
<id>urn:sha1:dfee504bee4353fd7cede8b11e0090e20c69a032</id>
<content type='text'>
Doc cleanup.

* ja/doc-markup-cleanup:
  doc: indent multi-line items in list
  doc: remove non pure ASCII characters
</content>
</entry>
<entry>
<title>Merge branch 'rs/ref-read-cleanup'</title>
<updated>2019-12-25T19:22:00Z</updated>
<author>
<name>Junio C Hamano</name>
<email>gitster@pobox.com</email>
</author>
<published>2019-12-25T19:22:00Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/commit/?id=87cbb1ca66c8a27e834d33099b6befa7f8cd989d'/>
<id>urn:sha1:87cbb1ca66c8a27e834d33099b6befa7f8cd989d</id>
<content type='text'>
Code cleanup.

* rs/ref-read-cleanup:
  remote: pass NULL to read_ref_full() because object ID is not needed
  refs: pass NULL to refs_read_ref_full() because object ID is not needed
</content>
</entry>
<entry>
<title>Merge branch 'rb/p4-lfs'</title>
<updated>2019-12-25T19:22:00Z</updated>
<author>
<name>Junio C Hamano</name>
<email>gitster@pobox.com</email>
</author>
<published>2019-12-25T19:22:00Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/commit/?id=20aa6d88b7494bf922abce7142485223731e5323'/>
<id>urn:sha1:20aa6d88b7494bf922abce7142485223731e5323</id>
<content type='text'>
"git p4" used to ignore lfs.storage configuration variable, which
has been corrected.

* rb/p4-lfs:
  git-p4: honor lfs.storage configuration variable
</content>
</entry>
</feed>
