Last active
April 9, 2024 04:47
-
-
Save jsonmaur/9a2b28dfbbfa8f2548dc84fc232d4f59 to your computer and use it in GitHub Desktop.
Backblaze Custom Exclude
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<excludefname_rule plat="mac" osVers="*" ruleIsOptional="t" skipFirstCharThenStartsWith="users/" contains_1="/.git/" contains_2="*" doesNotContain="*" endsWith="*" hasFileExtension="*" /> | |
<excludefname_rule plat="mac" osVers="*" ruleIsOptional="t" skipFirstCharThenStartsWith="users/" contains_1="/node_modules/" contains_2="*" doesNotContain="*" endsWith="*" hasFileExtension="*" /> | |
<excludefname_rule plat="mac" osVers="*" ruleIsOptional="t" skipFirstCharThenStartsWith="users/" contains_1="/_build/" contains_2="*" doesNotContain="*" endsWith="*" hasFileExtension="*" /> | |
<excludefname_rule plat="mac" osVers="*" ruleIsOptional="t" skipFirstCharThenStartsWith="users/" contains_1="/deps/" contains_2="*" doesNotContain="*" endsWith="*" hasFileExtension="*" /> |
Thank you!
With skipFirstCharThenStartsWith="users/"
, that would mean it only works for files under /users/
?
@Svish Yes I believe so. The article linked in my first comment briefly mentions that it improves performance.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks for the info @knikel. Looks like they updated their format since I set this up--those values weren't required before. I'll make the necessary changes.