Re: [PATCH v1 39/45] parse_pathspec: make sure the prefix part is wildcard-free

2013-03-20 Thread Duy Nguyen
On Wed, Mar 20, 2013 at 8:32 AM, Duy Nguyen wrote: > On Wed, Mar 20, 2013 at 1:34 AM, Junio C Hamano wrote: >> This seems to break t7300-clean.sh #8 > > Repeatedly? I saw some t7300-clean.sh failures when running tests in > parallel, but never been able to reproduce it alone. Never mind. There i

Re: [PATCH v1 39/45] parse_pathspec: make sure the prefix part is wildcard-free

2013-03-19 Thread Duy Nguyen
On Wed, Mar 20, 2013 at 1:34 AM, Junio C Hamano wrote: > This seems to break t7300-clean.sh #8 Repeatedly? I saw some t7300-clean.sh failures when running tests in parallel, but never been able to reproduce it alone. -- Duy -- To unsubscribe from this list: send the line "unsubscribe git" in the

Re: [PATCH v1 39/45] parse_pathspec: make sure the prefix part is wildcard-free

2013-03-19 Thread Junio C Hamano
This seems to break t7300-clean.sh #8 -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html

[PATCH v1 39/45] parse_pathspec: make sure the prefix part is wildcard-free

2013-03-14 Thread Nguyễn Thái Ngọc Duy
Prepending prefix to pathspec is a trick to workaround the fact that commands can be executed in a subdirectory, but all git commands run at worktree's root. The prefix part should always be treated as literal string. Make it so. Signed-off-by: Nguyễn Thái Ngọc Duy --- cache.h| 2 ++ path.c