Blocked and ignored signals -- but not caught signals -- are inherited
across exec. Some callers with sloppy signal-handling behavior can call
git with SIGPIPE blocked or ignored, even non-deterministically. When
SIGPIPE is blocked or ignored, several git commands can run indefinitely,
ignoring E
On Thu, Aug 14, 2014 at 11:58 PM, Junio C Hamano wrote:
>> +static void inflate_and_throw_away(unsigned long size)
>> +{
>
> But more importantly, the basic structure of this loop is the same
> as the loop we already have in the only caller of this new function,
> not just the regular "zlib produc
Markus Hitter writes:
>> The is in Mac OS X 10.6 .. 10.9,
>> but not in 10.4 (I don't know about 10.5).
Is this about platform dependency, or what the end user happens to
choose to install (in other words, is there an add-on users of 10.4
can choose to add, which allows them to use that header
Earlier, ffb6d7d5 (Move commit GPG signature verification to
commit.c, 2013-03-31) moved this helper that used to be in pretty.c
(i.e. the output code path) to commit.c for better reusability.
It was a good first step in the right direction, but still suffers a
myopic view that commits will be the
Hi Markus,
> export NO_APPLE_COMMON_CRYPTO=yes
> make configure
> CFLAGS=-O2 ./configure --without-tcltk --prefix=/usr/global
> make all
>
> compiles fine on 10.4.10. Would a configure patch checking for the
> existence of CommonHMAC.h and, if not found, defining this variable, be
> acceptable?
Y
Use libcurl's high-level API functions to implement git-imap-send
instead of the previous low-level OpenSSL-based functions.
Since version 7.30.0, libcurl's API has been able to communicate with
IMAP servers. Using those high-level functions instead of the current
ones would reduce imap-send.c by
On Thu, Aug 14, 2014 at 06:51:05PM +0700, Nguyễn Thái Ngọc Duy wrote:
> Noticed-by: Matthew Flaschen
> Signed-off-by: Nguyễn Thái Ngọc Duy
> ---
> builtin/fetch.c | 2 ++
> 1 file changed, 2 insertions(+)
>
> diff --git a/builtin/fetch.c b/builtin/fetch.c
> index 9394194..4ff4080 100644
> ---
On Thu, Aug 14, 2014 at 06:51:04PM +0700, Nguyễn Thái Ngọc Duy wrote:
> - static const char *argv_gc_auto[] = {
> - "gc", "--auto", NULL,
> - };
> + struct argv_array argv_gc_auto = ARGV_ARRAY_INIT;
>
> packet_trace_identity("fetch");
>
> @@ -1198,7 +1196,8 @@ int
resending - send mail failure
- Original Message -
From: "Philip Oakley"
To: "Junio C Hamano"
Cc: "GitList" ; "Jonathan Nieder"
Sent: Wednesday, August 13, 2014 5:03 PM
Subject: Re: [PATCH v2 1/1] doc: format-patch: don't use origin as a
branch name
From: "Junio C Hamano"
Sent
Dear Winner,
Please kindly go through your attached winning details and reply back for
your claim.
Lottery promo.
Dear Winner.pdf
Description: Adobe PDF document
Am 14.08.2014 um 16:39 schrieb Torsten Bögershausen:
> On 08/14/2014 02:13 PM, Markus Hitter wrote:
>> Issue 2: I need this simple patch ...
>>
>> --- compat/apple-common-crypto.h.org2014-07-30 23:19:53.0
>> +0200
>> +++ compat/apple-common-crypto.h2014-08-14 12:57:37.0 +020
Hi,
Michael Haggerty writes:
> On 08/07/2014 01:59 AM, Fabian Ruch wrote:
>> Lift the general unknown option blockade for the pick and reword
>> commands. If `do_cmd` comes across one of the options `--signoff` and
>> `--reset-author` while parsing a to-do entry and the scheduled
>> command is eit
Nguyễn Thái Ngọc Duy writes:
> If we are given two SHA-1 and asked to determine if they are different
> (but not _what_ differences), we know right away by comparing SHA-1.
>
> A side effect of this patch is, because large files are marked binary,
> diff-tree will not need to unpack them. 'diff-
Nguyễn Thái Ngọc Duy writes:
> diff --git a/t/t1050-large.sh b/t/t1050-large.sh
> index 711f22c..b294963 100755
> --- a/t/t1050-large.sh
> +++ b/t/t1050-large.sh
> @@ -116,6 +116,14 @@ test_expect_success 'diff --stat' '
> git diff --stat HEAD^ HEAD
> '
>
> +test_expect_success 'diff' '
Nguyễn Thái Ngọc Duy writes:
> As a recovery tool, unpack-objects should go on unpacking as many
> objects as it can.
>
> Signed-off-by: Nguyễn Thái Ngọc Duy
> ---
> builtin/unpack-objects.c | 42 +-
> t/t1050-large.sh | 7 +++
> 2 files cha
Nguyễn Thái Ngọc Duy writes:
> Signed-off-by: Nguyễn Thái Ngọc Duy
> ---
I think the basic idea is sound.
"git grep -e _gentle -e _gently -e _gentler" hints me that the new
functions are somewhat misnamed, though.
> git-compat-util.h | 2 ++
> wrapper.c | 73
>
On 08/14/2014 02:13 PM, Markus Hitter wrote:
I'm new to this list, so: Hello everybody!
My backup servers run Mac OS X 10.4.10. Yes, these are old, but very
reliable and easily up to the task. And Mac OS X 10.4 is the latest OS
supported there (PowerPC G3).
Recently I tried to upgrade to v2.0.4
I'm new to this list, so: Hello everybody!
My backup servers run Mac OS X 10.4.10. Yes, these are old, but very
reliable and easily up to the task. And Mac OS X 10.4 is the latest OS
supported there (PowerPC G3).
Recently I tried to upgrade to v2.0.4 (from 1.7.11.4).
Issue 1: I get many of these
Noticed-by: Matthew Flaschen
Signed-off-by: Nguyễn Thái Ngọc Duy
---
builtin/fetch.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/builtin/fetch.c b/builtin/fetch.c
index 9394194..4ff4080 100644
--- a/builtin/fetch.c
+++ b/builtin/fetch.c
@@ -1197,6 +1197,8 @@ int cmd_fetch(int argc, con
Signed-off-by: Nguyễn Thái Ngọc Duy
---
builtin/fetch.c | 7 +++
1 file changed, 3 insertions(+), 4 deletions(-)
diff --git a/builtin/fetch.c b/builtin/fetch.c
index e8d0cca..9394194 100644
--- a/builtin/fetch.c
+++ b/builtin/fetch.c
@@ -1110,9 +1110,7 @@ int cmd_fetch(int argc, const char *
You need to allow the directory to be read?
Allow from all
--
View this message in context:
http://git.661346.n2.nabble.com/PROPFIND-405-with-git-http-backend-and-Smart-HTTP-tp7564017p7616843.html
Sent from the git mailing list archive at Nabble.com.
--
To uns
21 matches
Mail list logo