Re: [PATCH 6/6] t3001: note about expected "**" behavior

2012-10-04 Thread Junio C Hamano
Nguyễn Thái Ngọc Duy writes: > "**" currently matches any characters including slashes. It's probably > too powerful. A more sensible definition may be match any characters > that the but the whole match must be wrapped by slashes. So "**" can > match none, "/", "/aaa/", "/aa/bb/" and so on but n

[PATCH 6/6] t3001: note about expected "**" behavior

2012-10-04 Thread Nguyễn Thái Ngọc Duy
"**" currently matches any characters including slashes. It's probably too powerful. A more sensible definition may be match any characters that the but the whole match must be wrapped by slashes. So "**" can match none, "/", "/aaa/", "/aa/bb/" and so on but not "aa/bb". Note it in the test suite.