You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The patterns help webpage says that ** can be used to match zero or more directory levels. However, I observe what apperas to be inconsistent behavior depending on how an include pattern is entered.
If I use the following patterns, Gtest and its content are INcluded:
R /Volumes/hubble_data1/cyb3rzeus
+ **/Gtest
! **/Gtest
But if I use these patterns, all of Gtest is EXcluded:
R /Volumes/hubble_data1/cyb3rzeus
+ **/borgie4
! **/Gtest
The way I read the docs, my expectation was that Gtest should be included with both pattern sets so my question is why does ** seem match all pre Gtest directories with the first set of patterns but not match all pre borgie4 directories with the second?
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
The patterns help webpage says that
**
can be used to match zero or more directory levels. However, I observe what apperas to be inconsistent behavior depending on how an include pattern is entered.Let's start with the following path structure
If I use the following patterns,
Gtest
and its content are INcluded:But if I use these patterns, all of
Gtest
is EXcluded:The way I read the docs, my expectation was that
Gtest
should be included with both pattern sets so my question is why does**
seem match all preGtest
directories with the first set of patterns but not match all preborgie4
directories with the second?Beta Was this translation helpful? Give feedback.
All reactions