Sync only files without extension

Hi there,

can you advice how to setup stignore in a way that only files without extensions are synchronized?

Many thanks

Vladimir

You can just add *.* or *?.?* to the ignore patterns. The latter is more specific, so that it doesn’t ignore things that start with . (e.g. dotfiles in Linux) or end with ..

Please keep in mind though that there is no distinction between files and folders in the ignore patterns, so if you’ve got a folder that has . somewhere in its name, it will also get ignored.

2 Likes

Thanks a lot Tomasz, it works. V