Re: PROPFIND 405 with git-http-backend and Smart HTTP

2014-08-14 Thread lpicquet
You need to allow the directory to be read? directory Path/to/your/repositories Allow from all /directory -- 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

[PATCH 1/2] fetch: convert argv_gc_auto to struct argv_array

2014-08-14 Thread Nguyễn Thái Ngọc Duy
Signed-off-by: Nguyễn Thái Ngọc Duy pclo...@gmail.com --- 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

[PATCH 2/2] fetch: silence git-gc if --quiet is given

2014-08-14 Thread Nguyễn Thái Ngọc Duy
Noticed-by: Matthew Flaschen mflasc...@wikimedia.org Signed-off-by: Nguyễn Thái Ngọc Duy pclo...@gmail.com --- 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 @@

Git on Mac OS X 10.4.10

2014-08-14 Thread Markus Hitter
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

Re: Git on Mac OS X 10.4.10

2014-08-14 Thread Torsten Bögershausen
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

Re: [PATCH v3 1/6] wrapper.c: introduce gentle xmalloc(z) that does not die()

2014-08-14 Thread Junio C Hamano
Nguyễn Thái Ngọc Duy pclo...@gmail.com writes: Signed-off-by: Nguyễn Thái Ngọc Duy pclo...@gmail.com --- 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

Re: [PATCH v3 3/6] unpack-objects: continue when fail to malloc due to large objects

2014-08-14 Thread Junio C Hamano
Nguyễn Thái Ngọc Duy pclo...@gmail.com 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 pclo...@gmail.com --- builtin/unpack-objects.c | 42 +- t/t1050-large.sh

Re: [PATCH v3 6/6] diff: shortcut for diff'ing two binary SHA-1 objects

2014-08-14 Thread Junio C Hamano
Nguyễn Thái Ngọc Duy pclo...@gmail.com 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

Re: [PATCH v3 6/6] diff: shortcut for diff'ing two binary SHA-1 objects

2014-08-14 Thread Junio C Hamano
Nguyễn Thái Ngọc Duy pclo...@gmail.com 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

Re: [PATCH v2 23/23] rebase -i: enable options --signoff, --reset-author for pick, reword

2014-08-14 Thread Fabian Ruch
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 either

Re: Git on Mac OS X 10.4.10

2014-08-14 Thread Markus Hitter
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 +0200 @@ -2,7

You have won 870.000 Euros

2014-08-14 Thread Elgordo
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

Re: [PATCH v2 1/1] doc: format-patch: don't use origin as a branch name

2014-08-14 Thread Philip Oakley
resending - send mail failure - Original Message - From: Philip Oakley philipoak...@iee.org To: Junio C Hamano gits...@pobox.com Cc: GitList git@vger.kernel.org; Jonathan Nieder jrnie...@gmail.com Sent: Wednesday, August 13, 2014 5:03 PM Subject: Re: [PATCH v2 1/1] doc: format-patch:

Re: [PATCH 1/2] fetch: convert argv_gc_auto to struct argv_array

2014-08-14 Thread Jeff King
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

Re: [PATCH 2/2] fetch: silence git-gc if --quiet is given

2014-08-14 Thread Jeff King
On Thu, Aug 14, 2014 at 06:51:05PM +0700, Nguyễn Thái Ngọc Duy wrote: Noticed-by: Matthew Flaschen mflasc...@wikimedia.org Signed-off-by: Nguyễn Thái Ngọc Duy pclo...@gmail.com --- builtin/fetch.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/builtin/fetch.c b/builtin/fetch.c

Re: [PATCH/RFC] git-imap-send: use libcurl for implementation

2014-08-14 Thread Bernhard Reiter
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

Re: Git on Mac OS X 10.4.10

2014-08-14 Thread Jonathan Nieder
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? Yes,

[PATCH] gpg-interface: move parse_gpg_output() to where it should be

2014-08-14 Thread Junio C Hamano
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

Re: Git on Mac OS X 10.4.10

2014-08-14 Thread Junio C Hamano
Markus Hitter m...@jump-ing.de writes: The CommonCrypto/CommonHMAC.h 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

Re: [PATCH v3 3/6] unpack-objects: continue when fail to malloc due to large objects

2014-08-14 Thread Duy Nguyen
On Thu, Aug 14, 2014 at 11:58 PM, Junio C Hamano gits...@pobox.com 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

[PATCH] unblock and unignore SIGPIPE

2014-08-14 Thread Patrick Reynolds
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