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
{{ message }}
This repository has been archived by the owner on Dec 29, 2020. It is now read-only.
cd ~/Dropbox
mkdir test
cd test
echo '*' > .dbignore
mkdir -p a/b/c
touch a/b/c/d.txt
You would expect a/b/c/d.txt not to be synced as it's matched by * (or at least the a folder is, which should then not be included).
The following text appears in ~/dbignore_log:
Ignore on /Users/Tyilo/Dropbox/test/a/b/c
is not ignore file
nearest ignore file is /Users/Tyilo/Dropbox/test
/Users/Tyilo/Dropbox/test/* does not match
Ignore on /Users/Tyilo/Dropbox/test/a/b
is not ignore file
nearest ignore file is /Users/Tyilo/Dropbox/test
/Users/Tyilo/Dropbox/test/* does not match
Ignore on /Users/Tyilo/Dropbox
is not ignore file
no ignore file found
Ignore on /Users/Tyilo/Dropbox/test/.dbignore
is ignore file
Ignore on /Users/Tyilo/Dropbox/test
is not ignore file
nearest ignore file is /Users/Tyilo/Dropbox/test
/Users/Tyilo/Dropbox/test/* does not match
Ignore on /Users/Tyilo/Dropbox/test/a
is not ignore file
nearest ignore file is /Users/Tyilo/Dropbox/test
/Users/Tyilo/Dropbox/test/* matches!
Ignore on /Users/Tyilo/Dropbox/test/a/b/c/d.txt
is not ignore file
nearest ignore file is /Users/Tyilo/Dropbox/test
/Users/Tyilo/Dropbox/test/* does not match
The text was updated successfully, but these errors were encountered:
Given the following test case:
You would expect
a/b/c/d.txt
not to be synced as it's matched by*
(or at least thea
folder is, which should then not be included).The following text appears in
~/dbignore_log
:The text was updated successfully, but these errors were encountered: