Re: [PATCH v1 11/45] parse_pathspec: support stripping submodule trailing slashes

2013-03-17 Thread Duy Nguyen
On Mon, Mar 18, 2013 at 4:55 AM, Junio C Hamano wrote: > Nguyễn Thái Ngọc Duy writes: > >> This flag is equivalent to builtin/ls-files.c:strip_trailing_slashes() >> and is intended to replace that function when ls-files is converted to >> use parse_pathspec. >> >> Signed-off-by: Nguyễn Thái Ngọc

Re: [PATCH v1 11/45] parse_pathspec: support stripping submodule trailing slashes

2013-03-17 Thread Junio C Hamano
Nguyễn Thái Ngọc Duy writes: > This flag is equivalent to builtin/ls-files.c:strip_trailing_slashes() > and is intended to replace that function when ls-files is converted to > use parse_pathspec. > > Signed-off-by: Nguyễn Thái Ngọc Duy > --- > pathspec.c | 9 + > pathspec.h | 1 + > 2

[PATCH v1 11/45] parse_pathspec: support stripping submodule trailing slashes

2013-03-14 Thread Nguyễn Thái Ngọc Duy
This flag is equivalent to builtin/ls-files.c:strip_trailing_slashes() and is intended to replace that function when ls-files is converted to use parse_pathspec. Signed-off-by: Nguyễn Thái Ngọc Duy --- pathspec.c | 9 + pathspec.h | 1 + 2 files changed, 10 insertions(+) diff --git a/pa