On Tue, Oct 18, 2016 at 10:15 AM, Junio C Hamano <[email protected]> wrote: > > I also somehow find the "check-url-stripping" variable ugly. > > while (URL still has something that could be stripped) {
for(;;) {
here ? (this code would not need a variable, and
for wins over while:
$ git grep "while (1)" |wc -l
107
$ git grep "for (;;)" |wc -l
128
)
> if (ends with "/.") {
> strip "/.";
> continue;
> }
> if (ends with "/") {
> strip "/";
> continue;
> }
> break;
> }
>
> perhaps?

