Home > Net >  Ignore the content of a folder in an SSAS tabular project
Ignore the content of a folder in an SSAS tabular project

Time:01-03

I have an SSAS Tabular project and I am working with Bitbucket, I am trying to ignore some specific folders in the .gitignore file like below (but I have a long list) :

/Assurance/bin/
/Delegue_Etablissement/bin/

The full path is C:\XXX\Delegue_Etablissement\bin\Data I want to ignore all the files under bin for all the paths (dynamically).

I used /*/bin/ but in vain.

CodePudding user response:

Just add bin (with no / before or after) in your list of ignored patterns.

This will ignore any file or directory named exactly bin at any subdirectory level.


Quoting git help gitignore :

  • If there is a separator at the beginning or middle (or both) of the pattern, then the pattern is relative to the directory level of the particular .gitignore file itself. Otherwise the pattern may also match at any level below the .gitignore level.
  • Related