To sync my linux-home-folder, I use this .stignore. Thats works well. But I dont want to sync Thumbs.db, cache files/folders tmp files/folders.
Anybody know, what I have to add in .stignore?
!/.abook
!/.dosbox
!/.sawfish
!/.vim
!/.ssh
!/.x2go
!/.x2goclient
!/Notebooks
!/Desktop
!/.reminders
!/.bashrc
!/.xinitrc
!/.sawfishrc
!/.profile
!/.vimrc
!/.xscreensaver
*
I think you need to add those before your current negated patterns, e.g.
thumbs.db
!/.abook
...
*
and so on. When it comes to ignore patterns, the order does matter.
1 Like
Like this:
!/.abook
!/.dosbox
!/.sawfish
!/.vim
!/.ssh
!/.x2go
!/.x2goclient
!/Notebooks
!/Desktop
!/.reminders
!/.bashrc
!/.xinitrc
!/.sawfishrc
!/.profile
!/.vimrc
!/.xscreensaver
*cache*
*Cache*
*Thumbs.db*
*TMP*
*tmp*
system
(system)
Closed
October 29, 2023, 6:26pm
4
This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.