On Mon, Mar 07, 2016 at 10:01:52PM +0300, Olga Pshenichnikova wrote:
> I have some tree structure:
> 
> /a
> /a/a
> /a/b
> ..
> /a/z
> /b
> .. (thousands of folders)
> /z
> 
> How can I control just /a/a folder?
> What exclude file should be?
> 
> The way we use now is:
> 
> /a/*
> /b/
> .. (thousands of folders)
> /z/
> !/a/a
> 
> But it is very not nice looking and hard for maintenance...

Don't know your usecase, but isn't it easier to just create the repository
in /a/a? Then you won't have to exlude anything.

If you must, you can just use something like:

 *
 !/a
 /a/*
 !/a/a
--
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

Reply via email to