1
0
mirror of https://github.com/gilbertchen/duplicacy synced 2025-12-10 05:13:17 +00:00

Fix include/exclude pattern description in GUIDE.md

Include/Exclude pattern prefixes have been switched up in the documentation. It could cause some confusion. :)
This commit is contained in:
Daniel Palma
2017-02-24 10:45:03 +01:00
committed by GitHub
parent 1d12fa3dd8
commit f8d2671038

View File

@@ -444,7 +444,7 @@ destination storage and is required.
## Include/Exclude Patterns
An include pattern starts with -, and an exclude pattern starts with +. Patterns may contain wildcard characters such as * and ? with their normal meaning.
An include pattern starts with +, and an exclude pattern starts with -. Patterns may contain wildcard characters such as * and ? with their normal meaning.
When matching a path against a list of patterns, the path is compared with the part after + or -, one pattern at a time. Therefore, the order of the patterns is significant. If a match with an include pattern is found, the path is said to be included without further comparisons. If a match with an exclude pattern is found, the path is said to be excluded without further comparison. If a match is not found, the path will be excluded if all patterns are include patterns, but included otherwise.