- Feb 24, 2019
-
-
Junio C Hamano authored
Signed-off-by:
Junio C Hamano <gitster@pobox.com>
-
Junio C Hamano authored
Doc fix. * yn/checkout-doc-fix: checkout doc: fix an unmatched double-quote pair
-
git://github.com/git-l10n/git-poJunio C Hamano authored
l10n-2.21.0-rnd2 * tag 'l10n-2.21.0-rnd2' of git://github.com/git-l10n/git-po: l10n: bg.po: Updated Bulgarian translation (4363t) l10n: update German translation l10n: zh_CN: Revision for git v2.21.0 l10n l10n: zh_CN: for git v2.21.0 l10n round 1~2 l10n: bg.po: correct typo l10n: Update Swedish translation (4363t0f0u) l10n: de.po: fix grammar in message for tag.c l10n: de.po: fix a message for index-pack.c l10n: de.po: consistent translation of 'root commit' l10n: it: update the Italian translation l10n: es: 2.21.0 round 2 l10n: el: add Greek l10n team and essential translations l10n: fr.po v2.21.0 rnd 2 l10n: fr.po Fix some typos from round3 l10n: fr.po Fix some typos l10n: Fixes to Catalan translation l10n: git.pot: v2.21.0 round 2 (3 new, 3 removed) l10n: git.pot: v2.21.0 round 1 (214 new, 38 removed) l10n: zh_CN: fix typo of submodule init message l10n: Update Catalan translation
-
Johannes Schindelin authored
During the six months of development of the Azure Pipelines support, the patches went through quite a few iterations of changes, and to test those iterations, a temporary build definition was used. In the meantime, Azure Pipelines support made it to `master`, and we now have a regular Azure Pipeline, installed via the common GitHub App workflow. This new pipeline has a different name (git.git instead of test-git.git), and a new ID (11 instead of 2). Let's adjust the badge in our README to reflect that final shape of the Azure Pipeline. Signed-off-by:
Johannes Schindelin <johannes.schindelin@gmx.de> Signed-off-by:
Junio C Hamano <gitster@pobox.com>
-
Yoichi Nakayama authored
Signed-off-by:
Yoichi Nakayama <yoichi.nakayama@gmail.com> Signed-off-by:
Junio C Hamano <gitster@pobox.com>
-
- Feb 23, 2019
-
-
Alexander Shopov authored
Signed-off-by:
Alexander Shopov <ash@kambanaria.org>
-
Junio C Hamano authored
Test portability fix. * ab/bsd-fixes: commit-graph tests: fix unportable "dd" invocation tests: fix unportable "\?" and "\+" regex syntax
-
Junio C Hamano authored
* ab/workaround-dash-bug-in-test: tests: avoid syntax triggering old dash bug
-
- Feb 22, 2019
-
-
Ævar Arnfjörð Bjarmason authored
Change an unportable invocation of "dd" with count=0, that wanted to truncate the commit-graph file. In POSIX it is unspecified what happens when count=0 is provided[1]. The NetBSD "dd" behavior differs from GNU (and seemingly other BSDs), which has left this test broken since d2b86fba ("commit-graph: fix buffer read-overflow", 2019-01-15). Copying from /dev/null would seek/truncate to seek=$zero_pos and stop immediately after that (without being able to copy anything), which is the right way to truncate the file. 1. http://pubs.opengroup.org/onlinepubs/9699919799/utilities/dd.html Signed-off-by:
Ævar Arnfjörð Bjarmason <avarab@gmail.com> Helped-by:
SZEDER Gábor <szeder.dev@gmail.com> Signed-off-by:
Junio C Hamano <gitster@pobox.com>
-
Ralf Thielow authored
Signed-off-by:
Ralf Thielow <ralf.thielow@gmail.com> Reviewed-by:
Matthias Rüster <matthias.ruester@gmail.com>
-
Ævar Arnfjörð Bjarmason authored
Fix widely supported but non-POSIX basic regex syntax introduced in [1] and [2]. On GNU, NetBSD and FreeBSD the following works: $ echo xy >f $ grep 'xy\?' f; echo $? xy 0 The same goes for "\+". The "?" and "+" syntax is not in the BRE syntax, just in ERE, but on some implementations it can be invoked by prefixing the meta-operator with "\", but not on OpenBSD: $ uname -a OpenBSD obsd.my.domain 6.2 GENERIC#132 amd64 $ grep --version grep version 0.9 $ grep 'xy\?' f; echo $? 1 Let's fix this by moving to ERE syntax instead, where "?" and "+" are universally supported: $ grep -E 'xy?' f; echo $? xy 0 1. 2ed5c8e1 ("describe: setup working tree for --dirty", 2019-02-03) 2. c801170b ("t6120: test for describe with a bare repository", 2019-02-03) Signed-off-by:
Ævar Arnfjörð Bjarmason <avarab@gmail.com> Signed-off-by:
Junio C Hamano <gitster@pobox.com>
-
- Feb 20, 2019
-
-
Jiang Xin authored
-
Fangyi Zhou authored
Signed-off-by:
Fangyi Zhou <fangyi.zhou@yuriko.moe>
-
Jiang Xin authored
Translate 214 new messages (4363t0f0u) for git 2.21.0. Signed-off-by:
Jiang Xin <worldhello.net@gmail.com>
-
Nguyễn Thái Ngọc Duy authored
Signed-off-by:
Nguyễn Thái Ngọc Duy <pclouds@gmail.com>
-
Peter Krefting authored
Signed-off-by:
Peter Krefting <peter@softwolves.pp.se>
-
- Feb 19, 2019
-
-
Junio C Hamano authored
Signed-off-by:
Junio C Hamano <gitster@pobox.com>
-
Junio C Hamano authored
* js/test-tool-gen-nuls: tests: teach the test-tool to generate NUL bytes and use it
-
Junio C Hamano authored
* mk/t5562-no-input-to-too-large-an-input-test: t5562: do not depend on /dev/zero Revert "t5562: replace /dev/zero with a pipe from generate_zero_bytes"
-
Junio C Hamano authored
* mk/t5562-do-not-reuse-output-files: t5562: do not reuse output files
-
Max Kirillov authored
Some expected failures of git-http-backend leaves running its children (receive-pack or upload-pack) which still hold opened descriptors to act.err and with some probability they live long enough to write there their failure messages after next test has already truncated the files. This causes occasional failures of the test script. Avoid the issue by using separated output and error file for each test, apprending the test number to their name. Reported-by:
Carlo Arenas <carenas@gmail.com> Helped-by:
Carlo Arenas <carenas@gmail.com> Helped-by:
Junio C Hamano <gitster@pobox.com> Signed-off-by:
Max Kirillov <max@max630.net> Signed-off-by:
Junio C Hamano <gitster@pobox.com>
-
Johannes Schindelin authored
In cc95bc20 (t5562: replace /dev/zero with a pipe from generate_zero_bytes, 2019-02-09), we replaced usage of /dev/zero (which is not available on NonStop, apparently) by a Perl script snippet to generate NUL bytes. Sadly, it does not seem to work on NonStop, as t5562 reportedly hangs. Worse, this also hangs in the Ubuntu 16.04 agents of the CI builds on Azure Pipelines: for some reason, the Perl script snippet that is run via `generate_zero_bytes` in t5562's 'CONTENT_LENGTH overflow ssite_t' test case tries to write out an infinite amount of NUL bytes unless a broken pipe is encountered, that snippet never encounters the broken pipe, and keeps going until the build times out. Oddly enough, this does not reproduce on the Windows and macOS agents, nor in a local Ubuntu 18.04. This developer tried for a day to figure out the exact circumstances under which this hang happens, to no avail, the details remain a mystery. In the end, though, what counts is that this here change incidentally fixes that hang (maybe also on NonStop?). Even more positively, it gets rid of yet another unnecessary Perl invocation. Signed-off-by:
Johannes Schindelin <johannes.schindelin@gmx.de> Signed-off-by:
Junio C Hamano <gitster@pobox.com>
-
Max Kirillov authored
It was reported [1] that NonStop platform does not have /dev/zero. The test uses /dev/zero as a dummy input. Passing case (http-backed failed because of too big input size) should not be reading anything from it. If http-backend would erroneously try to read any data returning EOF probably would be even safer than providing some meaningless data. Replace /dev/zero with /dev/null to avoid issues with platforms which do not have /dev/zero. [1] https://public-inbox.org/git/20190209185930.5256-4-randall.s.becker@rogers.com/ Reported-by:
Randall S. Becker <rsbecker@nexbridge.com> Signed-off-by:
Max Kirillov <max@max630.net> Signed-off-by:
Junio C Hamano <gitster@pobox.com>
-
Junio C Hamano authored
Revert cc95bc20 ("t5562: replace /dev/zero with a pipe from generate_zero_bytes", 2019-02-09), as not feeding anything to the command is a better way to test it.
-
Sebastian Staudt authored
Signed-off-by:
Sebastian Staudt <koraktor@gmail.com>
-
Sebastian Staudt authored
Signed-off-by:
Sebastian Staudt <koraktor@gmail.com>
-
Sebastian Staudt authored
'root commit' is usually translated as 'Root-Commit'. But in one occasion it‘s translated as 'Basis-Commit' which is the translation for 'base commit'. Signed-off-by:
Sebastian Staudt <koraktor@gmail.com>
-
Alessandro Menti authored
Signed-off-by:
Alessandro Menti <alessandro.menti@alessandromenti.it>
-
- Feb 17, 2019
-
- Feb 16, 2019
-
-
Christopher Diaz Riveros authored
Signed-off-by:
Christopher Diaz Riveros <chrisadr@gentoo.org>
-
git://github.com/jnavila/gitJiang Xin authored
-
Jimmy Angelakos authored
Signed-off-by:
Jimmy Angelakos <vyruss@hellug.gr>
-
- Feb 15, 2019
-
-
Jean-Noël Avila authored
Signed-off-by:
Jean-Noël Avila <jn.avila@free.fr>
-
Fabien Villepinte authored
Signed-off-by:
Fabien Villepinte <fabien.villepinte@gmail.com>
-
Fabien Villepinte authored
Signed-off-by:
Fabien Villepinte <fabien.villepinte@gmail.com>
-
Johannes Schindelin authored
Running up to v2.21.0, we fixed two bugs that were made prominent by the Windows-specific change to retain copies of only the 30 latest getenv() calls' returned strings, invalidating any copies of previous getenv() calls' return values. While this really shines a light onto bugs of the form where we hold onto getenv()'s return values without copying them, it is also a real problem for users. And even if Jeff King's patches merged via 773e4088 (Merge branch 'jk/save-getenv-result', 2019-01-29) provide further work on that front, we are far from done. Just one example: on Windows, we unset environment variables when spawning new processes, which potentially invalidates strings that were previously obtained via getenv(), and therefore we have to duplicate environment values that are somehow involved in spawning new processes (e.g. GIT_MAN_VIEWER in show_man_page()). We do not have a chance to investigate, let address, all of those issues in time for v2.21.0, so let's at least help Windows users by increasing the number of getenv() calls' return values that are kept valid. The number 64 was determined by looking at the average number of getenv() calls per process in the entire test suite run on Windows (which is around 40) and then adding a bit for good measure. And it is a power of two (which would have hit yesterday's theme perfectly). Signed-off-by:
Johannes Schindelin <johannes.schindelin@gmx.de> Signed-off-by:
Junio C Hamano <gitster@pobox.com>
-
Jordi Mas authored
Signed-off-by:
Jordi Mas <jmas@softcatala.org>
-
Jiang Xin authored
Introduce 3 update messages for v2.21.0 l10n round 2 from commit 32ceace3 (Fix typos in translatable strings for v2.21.0, 2019-02-11). Signed-off-by:
Jiang Xin <worldhello.net@gmail.com>
-