<feed xmlns='http://www.w3.org/2005/Atom'>
<title>git/compat, branch v1.7.2</title>
<subtitle>Mirror of https://git.kernel.org/pub/scm/git/git.git/
</subtitle>
<id>https://git.shady.money/git/atom?h=v1.7.2</id>
<link rel='self' href='https://git.shady.money/git/atom?h=v1.7.2'/>
<link rel='alternate' type='text/html' href='https://git.shady.money/git/'/>
<updated>2010-06-21T13:02:45Z</updated>
<entry>
<title>Merge branch 'js/async-thread'</title>
<updated>2010-06-21T13:02:45Z</updated>
<author>
<name>Junio C Hamano</name>
<email>gitster@pobox.com</email>
</author>
<published>2010-06-21T13:02:45Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/git/commit/?id=762655010d6f051f632a77b8c5b95b9f5cad02c9'/>
<id>urn:sha1:762655010d6f051f632a77b8c5b95b9f5cad02c9</id>
<content type='text'>
* js/async-thread:
  fast-import: die_nicely() back to vsnprintf (reverts part of ebaa79f)
  Enable threaded async procedures whenever pthreads is available
  Dying in an async procedure should only exit the thread, not the process.
  Reimplement async procedures using pthreads
  Windows: more pthreads functions
  Fix signature of fcntl() compatibility dummy
  Make report() from usage.c public as vreportf() and use it.
  Modernize t5530-upload-pack-error.

Conflicts:
	http-backend.c
</content>
</entry>
<entry>
<title>Merge branch 'js/maint-windows'</title>
<updated>2010-06-13T18:21:30Z</updated>
<author>
<name>Junio C Hamano</name>
<email>gitster@pobox.com</email>
</author>
<published>2010-06-13T18:21:30Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/git/commit/?id=04d30ce622517faa0c6bc34ac5626586b447e350'/>
<id>urn:sha1:04d30ce622517faa0c6bc34ac5626586b447e350</id>
<content type='text'>
* js/maint-windows:
  Recent MinGW has a C99 implementation of snprintf functions
  mingw: use _commit to implement fsync
</content>
</entry>
<entry>
<title>Merge branch 'np/malloc-threading'</title>
<updated>2010-05-21T11:02:16Z</updated>
<author>
<name>Junio C Hamano</name>
<email>gitster@pobox.com</email>
</author>
<published>2010-05-21T11:02:16Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/git/commit/?id=ea5f75a64ae52590b06713d45d84de03ca109ccc'/>
<id>urn:sha1:ea5f75a64ae52590b06713d45d84de03ca109ccc</id>
<content type='text'>
* np/malloc-threading:
  Thread-safe xmalloc and xrealloc needs a recursive mutex
  Make xmalloc and xrealloc thread-safe
</content>
</entry>
<entry>
<title>mingw: use _commit to implement fsync</title>
<updated>2010-05-20T23:12:46Z</updated>
<author>
<name>Erik Faye-Lund</name>
<email>kusmabite@googlemail.com</email>
</author>
<published>2010-05-20T18:57:54Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/git/commit/?id=75f6929a3669dd0b3123b6b3cd51ec09d0b234c4'/>
<id>urn:sha1:75f6929a3669dd0b3123b6b3cd51ec09d0b234c4</id>
<content type='text'>
Signed-off-by: Erik Faye-Lund &lt;kusmabite@gmail.com&gt;
Signed-off-by: Johannes Sixt &lt;j6t@kdbg.org&gt;
Signed-off-by: Junio C Hamano &lt;gitster@pobox.com&gt;
</content>
</entry>
<entry>
<title>Fix checkout of large files to network shares on Windows XP</title>
<updated>2010-05-20T23:12:13Z</updated>
<author>
<name>René Scharfe</name>
<email>rene.scharfe@lsrfire.ath.cx</email>
</author>
<published>2010-05-20T18:57:53Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/git/commit/?id=c8b296450e5148c576697ea4709072b7855aacd5'/>
<id>urn:sha1:c8b296450e5148c576697ea4709072b7855aacd5</id>
<content type='text'>
Bigger writes to network drives on Windows XP fail.  Cap them at 31MB to
allow them to succeed.  Callers need to be prepared for write() calls
that do less work than requested anyway.

On local drives, write() calls are translated to WriteFile() calls with
a cap of 64KB on Windows XP and 256KB on Vista.  Thus a cap of 31MB won't
affect the number of WriteFile() calls which do the actual work.  There's
still room for some other version of Windows to use a chunk size of 1MB
without increasing the number of system calls.

Signed-off-by: Rene Scharfe &lt;rene.scharfe@lsrfire.ath.cx&gt;
Signed-off-by: Johannes Sixt &lt;j6t@kdbg.org&gt;
Signed-off-by: Junio C Hamano &lt;gitster@pobox.com&gt;
</content>
</entry>
<entry>
<title>Fix "Out of memory? mmap failed" for files larger than 4GB on Windows</title>
<updated>2010-05-20T23:11:06Z</updated>
<author>
<name>Ian McLean</name>
<email>ian.mclean@gmail.com</email>
</author>
<published>2010-05-20T18:57:51Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/git/commit/?id=60890cc60ccfc7000791a47f1f3d69fdb8884dd7'/>
<id>urn:sha1:60890cc60ccfc7000791a47f1f3d69fdb8884dd7</id>
<content type='text'>
The git_mmap implementation was broken for file sizes that wouldn't fit
into a size_t (32 bits).  This was caused by intermediate variables that
were only 32 bits wide when they should be 64 bits.

Signed-off-by: Johannes Sixt &lt;j6t@kdbg.org&gt;
Signed-off-by: Junio C Hamano &lt;gitster@pobox.com&gt;
</content>
</entry>
<entry>
<title>Merge branch 'maint'</title>
<updated>2010-04-20T05:41:30Z</updated>
<author>
<name>Junio C Hamano</name>
<email>gitster@pobox.com</email>
</author>
<published>2010-04-20T05:41:30Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/git/commit/?id=ddd02b70f0d80fc3cac6b2f2c42005560d572413'/>
<id>urn:sha1:ddd02b70f0d80fc3cac6b2f2c42005560d572413</id>
<content type='text'>
* maint:
  t7012: Mark missing tests as TODO
  reflog: remove 'show' from 'expire's usage string
  MSVC: Fix build by adding missing termios.h dummy
</content>
</entry>
<entry>
<title>Merge branch 'maint-1.6.6' into maint</title>
<updated>2010-04-19T08:28:27Z</updated>
<author>
<name>Junio C Hamano</name>
<email>gitster@pobox.com</email>
</author>
<published>2010-04-19T08:28:27Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/git/commit/?id=8165952517bf82b6a632cefc047ad14f36a74b25'/>
<id>urn:sha1:8165952517bf82b6a632cefc047ad14f36a74b25</id>
<content type='text'>
* maint-1.6.6:
  MSVC: Fix build by adding missing termios.h dummy
</content>
</entry>
<entry>
<title>MSVC: Fix build by adding missing termios.h dummy</title>
<updated>2010-04-19T08:28:21Z</updated>
<author>
<name>Johannes Sixt</name>
<email>j6t@kdbg.org</email>
</author>
<published>2010-04-19T07:37:20Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/git/commit/?id=b75686455c0524f167b6a878c124df40db34b325'/>
<id>urn:sha1:b75686455c0524f167b6a878c124df40db34b325</id>
<content type='text'>
A use of this header file was introduced in eb80042 (Add missing #include
to support TIOCGWINSZ on Solaris, 2010-01-11).

Signed-off-by: Johannes Sixt &lt;j6t@kdbg.org&gt;
Signed-off-by: Junio C Hamano &lt;gitster@pobox.com&gt;
</content>
</entry>
<entry>
<title>Merge branch 'jl/maint-submodule-gitfile-awareness'</title>
<updated>2010-04-11T20:54:28Z</updated>
<author>
<name>Junio C Hamano</name>
<email>gitster@pobox.com</email>
</author>
<published>2010-04-11T20:54:28Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/git/commit/?id=4553d58f374c6bfcae6b4be528bbf11c18a7efe5'/>
<id>urn:sha1:4553d58f374c6bfcae6b4be528bbf11c18a7efe5</id>
<content type='text'>
* jl/maint-submodule-gitfile-awareness:
  Windows: start_command: Support non-NULL dir in struct child_process
</content>
</entry>
</feed>
