Istvan
Istvan

Reputation: 8582

How to ignore the same directory in any trees with mercurial?

Hey I would like to ignore cache directories and the sub-tree of them everywhere. I tried the following:

syntax: glob
**/cache/**

It seems it is not the right thing to do. Would somebody shed some light?

Upvotes: 1

Views: 329

Answers (1)

Jamie Dixon
Jamie Dixon

Reputation: 54021

If you're wanting to ignore everything in and below the cache folder the following should work:

syntax: glob
cache/**

Upvotes: 3

Related Questions