fetch-any-blob / ref-in-want proposal

2017-07-22 Thread Orgad Shaneh
Hi, Jonathan Tan proposed a design and a patch series for requesting a specific ref on fetch 4 months ago[1]. Is there any progress with this? - Orgad [1] https://public-inbox.org/git/ffd92ad9-39fe-c76b-178d-6e3d6a425...@google.com/

recursive grep doesn't respect --color=always inside submodules

2017-07-22 Thread Orgad Shaneh
Hi, When git grep --color=always is used, and the output is redirected to a file or a pipe, results inside submodules are not colored. Results in the supermodule are colored correctly. - Orgad

Re: [PATCH] PRItime: wrap PRItime for better l10n compatibility

2017-07-22 Thread Jean-Noël AVILA
Le 22/07/2017 à 02:43, Jiang Xin a écrit : > > Benefit of using the tweak version of gettext: > > 1. `make pot` can be run in a tar extract directory (without git controlled). This issue is real for packet maintainers who can patch the original source and run their own set of utilities outside of

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

2017-07-22 Thread Jean-Noël Avila
Le 22/07/2017 à 19:02, Kaartic Sivaraam a écrit : > On Sat, 2017-07-15 at 21:30 +0200, Jean-Noël Avila wrote: >> * commit 4ddb1354e8 ("status: contextually notify user about an initial >> commit") plays sentence lego while introducing colorization which again >> does not play well with i18n. >> >

Re: reftable [v3]: new ref storage format

2017-07-22 Thread Shawn Pearce
3rd iteration of the reftable storage format. You can read a rendered version of this here: https://googlers.googlesource.com/sop/jgit/+/reftable/Documentation/technical/reftable.md Significant changes from v2: - efficient lookup by SHA-1 for allow-tip-sha1-in-want. - type 0x4 for FETCH_HEAD, MER

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

2017-07-22 Thread Kaartic Sivaraam
On Sat, 2017-07-15 at 21:30 +0200, Jean-Noël Avila wrote: > * commit 4ddb1354e8 ("status: contextually notify user about an initial > commit") plays sentence lego while introducing colorization which again > does not play well with i18n. > What, if anything, should be done about this? -- Kaarti

Re: [PATCH] sha1_file: use access(), not lstat(), if possible

2017-07-22 Thread Junio C Hamano
Johannes Schindelin writes: > But this whole thread taps into a gripe I have with parts of Git's code > base: part of the code is not clear at all in its intent by virtue of > calling whatever POSIX function may seem to give the answer for the > intended question, instead of implementing a functi

Re: [PATCH] make get_be64() compile on pu with NO_UNALIGNED_LOADS

2017-07-22 Thread Junio C Hamano
Martin Ågren writes: > Applies to pu and passes the tests. I think this should be squashed in > somewhere. Perhaps a mismerge in commit d553324d ("Merge branch > 'bp/fsmonitor' into pu", 2017-07-21). Yes, you spotted a mistaken evil-merge. Thanks. > > compat/bswap.h | 6 +++--- > 1 file chang

Re: [PATCH] PRItime: wrap PRItime for better l10n compatibility

2017-07-22 Thread Junio C Hamano
Johannes Schindelin writes: > On Fri, 21 Jul 2017, Junio C Hamano wrote: > >> Jean-Noël Avila writes: >> >> > Le 20/07/2017 à 20:57, Junio C Hamano a écrit : >> >> >> >> + git diff --quiet HEAD && git diff --quiet --cached >> >> + >> >> + @for s in $(LOCALIZED_C) $(LOCALIZED_SH) $(LOCALIZED_PER

Re: [PATCH] PRItime: wrap PRItime for better l10n compatibility

2017-07-22 Thread Junio C Hamano
Johannes Schindelin writes: >> >> A very small hack on gettext. > > I am 100% opposed to this hack. It is already cumbersome enough to find > out what is involved in i18n (it took *me* five minutes to find out that > much of the information is in po/README, with a lot of information stored > *on

Hello Beautiful,

2017-07-22 Thread Jack
Good day dear, i hope this mail meets you well? my name is Jack, from the U.S. I know this may seem inappropriate so i ask for your forgiveness but i wish to get to know you better, if I may be so bold. I consider myself an easy-going man, adventurous, honest and fun loving person but I am curre

De la señora Malika

2017-07-22 Thread abely malika
Querida Soy la señora MALIKA Tengo 56 años de edad, viuda sin un hijo, tengo una donación de $ 2.5 millones (dos millones, quinientos mil dólares) para donar a alguien que puede usarla para trabajar para Dios, mi médico me dijo que No voy a durar mucho tiempo debido a mi enfermedad de cáncer. Quie

Re: [PATCH v6 00/10] The final building block for a faster rebase -i

2017-07-22 Thread Johannes Schindelin
Hi Junio, On Thu, 20 Jul 2017, Junio C Hamano wrote: > Johannes Schindelin writes: > > > Changes since v5: > > > > - replaced a get_sha1() call by a get_oid() call already. > > > > - adjusted to hashmap API changes > > Applying this to the tip of 'master' yields exactly the same result > as me

Re: [PATCH] PRItime: wrap PRItime for better l10n compatibility

2017-07-22 Thread Johannes Schindelin
Hi, On Sat, 22 Jul 2017, Jiang Xin wrote: > 2017-07-22 7:34 GMT+08:00 Junio C Hamano : > > Jiang Xin writes: > > > >> A very small hack on gettext. I am 100% opposed to this hack. It is already cumbersome enough to find out what is involved in i18n (it took *me* five minutes to find out that mu

Re: [PATCH] PRItime: wrap PRItime for better l10n compatibility

2017-07-22 Thread Johannes Schindelin
Hi, On Fri, 21 Jul 2017, Junio C Hamano wrote: > Jean-Noël Avila writes: > > > Le 20/07/2017 à 20:57, Junio C Hamano a écrit : > >> > >> + git diff --quiet HEAD && git diff --quiet --cached > >> + > >> + @for s in $(LOCALIZED_C) $(LOCALIZED_SH) $(LOCALIZED_PERL); \ > > > > Does PRIuMAX make s

Re: [PATCH] sha1_file: use access(), not lstat(), if possible

2017-07-22 Thread Johannes Schindelin
Hi, On Thu, 20 Jul 2017, Junio C Hamano wrote: > Jonathan Tan writes: > > > In sha1_loose_object_info(), use access() (indirectly invoked through > > has_loose_object()) instead of lstat() if we do not need the on-disk > > size, as it should be faster on Windows [1]. > > That sounds as if Wind

[PATCH] make get_be64() compile on pu with NO_UNALIGNED_LOADS

2017-07-22 Thread Martin Ågren
1. s/unit64_t/uint64_t/ 2. add const-qualifier to *p 3. add missing closing ')' Signed-off-by: Martin Ågren --- Applies to pu and passes the tests. I think this should be squashed in somewhere. Perhaps a mismerge in commit d553324d ("Merge branch 'bp/fsmonitor' into pu", 2017-07-21). compat/b