Re: [PATCH v3 0/5] archive-zip: support files and archives bigger than 4GB

2017-04-29 Thread Torsten Bögershausen
On 30/04/17 00:28, René Scharfe wrote: Am 29.04.2017 um 23:00 schrieb Torsten Bögershausen: This fails here under Mac OS: commit 4cdf3f9d84568da72f1dcade812de7a42ecb6d15 Author: René Scharfe Date: Mon Apr 24 19:33:34 2017 +0200 archive-zip: support files bigger than 4GB

Re: [PATCHv2 0/3] Make diff plumbing commands respect the indentHeuristic.

2017-04-29 Thread Michael Haggerty
On 04/29/2017 02:40 PM, Jeff King wrote: > On Fri, Apr 28, 2017 at 06:33:12PM -0400, Marc Branchaud wrote: > >> v2: Fixed up the commit messages and added tests. >> >> Marc Branchaud (2): >> diff: make the indent heuristic part of diff's basic configuration >> diff: have the diff-* builtins

Re: [PATCH 1/5] add SWAP macro

2017-04-29 Thread Jeff King
On Sat, Apr 29, 2017 at 08:16:17PM +0200, René Scharfe wrote: > > I dunno. I could go either way. Or we could leave it as-is, and let > > valgrind find the problem. That has zero run-time cost, but of course > > nobody bothers to run valgrind outside of the test suite, so the inputs > > are not

Bug: wrong documentation for git-fast-import's option command

2017-04-29 Thread Tomi Belan
The man page of git-fast-import says the syntax is "'option' SP LF". But this is wrong, and commands like that will be silently ignored. fast-import.c only parses commands starting with "option git ", and ignores others starting with "option ". See

Re: git loses a commit after reordering.

2017-04-29 Thread Kevin Daudt
On Thu, Apr 27, 2017 at 10:43:16AM +0300, Nikita Orlov wrote: > Hello, my name is Nikita (male). > > Could you explain this (subject) is a bug or a feature? > > [snip] > > "Some independent changes 1" is missed and its changes are missed as well. > > I tried to move another commit to a farther

Re: [PATCH v3 0/5] archive-zip: support files and archives bigger than 4GB

2017-04-29 Thread René Scharfe
Am 29.04.2017 um 23:00 schrieb Torsten Bögershausen: > This fails here under Mac OS: > commit 4cdf3f9d84568da72f1dcade812de7a42ecb6d15 > Author: René Scharfe > Date: Mon Apr 24 19:33:34 2017 +0200 > > archive-zip: support files bigger than 4GB > >

Re: git with ssh won't pull submodule

2017-04-29 Thread Erik Haller
Ah. I was able to get it to work with the ssh protocol and a relative path. Thank you for your help. On Fri, Apr 28, 2017 at 8:45 AM, Chris Packham wrote: > Hi Erik, > > On Fri, Apr 28, 2017 at 11:25 AM, Erik Haller wrote: >> Getting the following

Re: [PATCH v3 0/5] archive-zip: support files and archives bigger than 4GB

2017-04-29 Thread Torsten Bögershausen
On 2017-04-24 19:22, René Scharfe wrote: > The first patch adds (expensive) tests, the next two are cleanups which > set the stage for the remaining two to actually implement zip64 support > for offsets and file sizes. > > Half of the series had been laying around for months, half-finished and >

Re: Bug: Git rename does not work if folder naming was changed from lower to upper case on OSX

2017-04-29 Thread Kevin Daudt
On Sat, Apr 29, 2017 at 12:47:13PM +0200, Robert Eisele wrote: > Hi, > > after having committed folders with lower case naming, I decided to rename > them to upper-case names. Expecting git to detect them as renamings, it > started a new parallel hierarchy with new files, which I had to

[PATCH v1] travis-ci: handle Git for Windows CI status "failed" explicitly

2017-04-29 Thread Lars Schneider
Git for Windows CI returns "completed: failed" if a build or test failure happened. This case was processed as "Unhandled status". Handle the case explicitly. Signed-off-by: Lars Schneider --- Notes: Base Ref: next Web-Diff:

[PATCH v1] travis-ci: retry if Git for Windows CI returns HTTP error 502 or 503

2017-04-29 Thread Lars Schneider
The Git for Windows CI web app sometimes returns HTTP errors of "502 bad gateway" or "503 service unavailable" [1]. Wait a little and retry the request if this happens. [1] https://docs.microsoft.com/en-in/azure/app-service-web/app-service-web-troubleshoot-http-502-http-503 Signed-off-by: Lars

Re: [PATCH 1/5] add SWAP macro

2017-04-29 Thread René Scharfe
Am 28.04.2017 um 23:49 schrieb Jeff King: On Fri, Apr 28, 2017 at 07:04:51PM +0200, René Scharfe wrote: What should: SWAP(foo[i], foo[j]); do when i == j? With this code, it ends up calling memcpy([i], [j], ...); which can cause valgrind to complain about overlapping memory. I

Re: [PATCH] githooks.txt: clarify push hooks are always executed in $GIT_DIR

2017-04-29 Thread Ævar Arnfjörð Bjarmason
On Sat, Apr 29, 2017 at 2:28 PM, Simon Ruderich wrote: > Listing the specific hooks might feel verbose but without it the > reader is left to wonder which hooks are triggered during the > push. Something which is not immediately obvious when only trying > to find out where the

[PATCH/RFC 1/1] t0027: Some tests are not expensive

2017-04-29 Thread tboegi
From: Torsten Bögershausen The purpose of t0027 is to test all CRLF related conversions at "git checkout" and "git add". Running t0027 under Git for Windows takes 3-4 minutes, so the whole script had been marked as "EXPENSIVE". The source code for "Git for Windows" overrides

Re: Bug: Git rename does not work if folder naming was changed from lower to upper case on OSX

2017-04-29 Thread Torsten Bögershausen
after having committed folders with lower case naming, I decided to rename them to upper-case names. Expecting git to detect them as renamings, it started a new parallel hierarchy with new files, which I had to add/commit. It was a kinda strange behavior, which I fixed by rename the folder to

[PATCH 4/3] add--interactive: drop diff.indentHeuristic handling

2017-04-29 Thread Jeff King
On Sat, Apr 29, 2017 at 08:40:52AM -0400, Jeff King wrote: > On Fri, Apr 28, 2017 at 06:33:12PM -0400, Marc Branchaud wrote: > > > v2: Fixed up the commit messages and added tests. > > > > Marc Branchaud (2): > > diff: make the indent heuristic part of diff's basic configuration > > diff:

Re: [PATCHv2 0/3] Make diff plumbing commands respect the indentHeuristic.

2017-04-29 Thread Jeff King
On Sat, Apr 29, 2017 at 08:40:52AM -0400, Jeff King wrote: > On Fri, Apr 28, 2017 at 06:33:12PM -0400, Marc Branchaud wrote: > > > v2: Fixed up the commit messages and added tests. > > > > Marc Branchaud (2): > > diff: make the indent heuristic part of diff's basic configuration > > diff:

Re: [PATCHv2 0/3] Make diff plumbing commands respect the indentHeuristic.

2017-04-29 Thread Jeff King
On Fri, Apr 28, 2017 at 06:33:12PM -0400, Marc Branchaud wrote: > v2: Fixed up the commit messages and added tests. > > Marc Branchaud (2): > diff: make the indent heuristic part of diff's basic configuration > diff: have the diff-* builtins configure diff before initializing > revisions

[PATCH] githooks.txt: clarify push hooks are always executed in $GIT_DIR

2017-04-29 Thread Simon Ruderich
Listing the specific hooks might feel verbose but without it the reader is left to wonder which hooks are triggered during the push. Something which is not immediately obvious when only trying to find out where the hook is executed. Signed-off-by: Simon Ruderich ---

[PATCH] send-email: new option to walkaround email server limits

2017-04-29 Thread xiaoqiang zhao
Some email server(e.g. smtp.163.com) limits a fixed number emails to be send per session(connection) and this will lead to a send faliure. With --split option, a auto reconnection will occur when number of sended email reaches and the problem is solved. Signed-off-by: xiaoqiang zhao

Bug: Git rename does not work if folder naming was changed from lower to upper case on OSX

2017-04-29 Thread Robert Eisele
Hi, after having committed folders with lower case naming, I decided to rename them to upper-case names. Expecting git to detect them as renamings, it started a new parallel hierarchy with new files, which I had to add/commit. It was a kinda strange behavior, which I fixed by rename the

Re: [PATCH] t7400: add BSLASHPSPEC prerequisite to 'add with \\ in path'

2017-04-29 Thread Johannes Schindelin
Hi, On Sat, 29 Apr 2017, Johannes Sixt wrote: > Am 29.04.2017 um 02:15 schrieb Ramsay Jones: > > > > On 28/04/17 20:54, Johannes Sixt wrote: > > > Am 28.04.2017 um 05:09 schrieb Junio C Hamano: > > > > Ramsay Jones writes: > > > > > > > > > Commit cf9e55f494

[PATCH] i18n: remove i18n from tag reflog message

2017-04-29 Thread Jean-Noel Avila
The building of the reflog message is using strbuf, which is not friendly with internationalization frameworks. No other reflog messages are translated right now and switching all the messages to i18n would require a major rework of the way the messages are built. Signed-off-by: Jean-Noel Avila

Dear Friend,

2017-04-29 Thread victoryaran...@ono.com
-- Dear Friend, I am soliciting your partnership to relocation $12 .5 Million to your country for investment on my behalf and you will be entitled to 30% of the sum once the transaction is successful made, please indicate your interest if you are capable so that i will send you details of

Re: [L10N] Kickoff of translation for Git 2.13.0 round 1

2017-04-29 Thread Jean-Noël AVILA
Le dimanche 23 avril 2017, 10:49:27 CEST Jiang Xin a écrit : > Hi, > > Git v2.13.0-rc0 has been released, and it's time to start new round of git > l10n. This time there are 96 updated messages need to be translated since > last update: > > l10n: git.pot: v2.13.0 round 1 (96 new, 37 removed)

Re: [PATCH] t7400: add BSLASHPSPEC prerequisite to 'add with \\ in path'

2017-04-29 Thread Johannes Sixt
Am 29.04.2017 um 02:15 schrieb Ramsay Jones: On 28/04/17 20:54, Johannes Sixt wrote: Am 28.04.2017 um 05:09 schrieb Junio C Hamano: Ramsay Jones writes: Commit cf9e55f494 ("submodule: prevent backslash expantion in submodule names", 07-04-2017) added a test