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
-
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 co
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 us
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
https://github.com/git/git/blob/027a3b943b444a3e
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
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
>
> ---
> Parts of t5
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 error for a submodule when using git/ssh:
>>
>>
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
> f
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 add/commit
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: https://github.com/larsxschneider/git/commit/57840905a5
Che
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 S
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(&foo[i], &foo[j], ...);
which can cause valgrind to complain about overlapping memory.
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 hook is executed.
>
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 this since 2014:
"t
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
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: ha
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: ha
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
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
---
Documentation/githooks.txt |
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
---
git-se
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 fold
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 ("submodule: prevent backslash expant
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,
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 th
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)
25 matches
Mail list logo