I want to take regular backups of my web development project files but would like to ignore not so important files like images, vendor files, etc. There is a way to exclude folders but how to exclude by file type?
Asked
Active
Viewed 355 times
0
rsync
instead. – wjandrea Dec 16 '16 at 02:34save
orignore
only at the folder level. – heynnema Dec 17 '16 at 01:37rsync
is just for syncing files and not for a backup! - there is a difference between these two tasks. -- and by the way:deja-dup
is rather a GUI-application andrsync
has a CLI only; although there is withgrsync
a rudimentary GUI. – DJCrashdummy Jun 18 '17 at 18:46rsnapshot
is for making backups: it is based onrsync
, folders, files and file types can be ex-/included but it has still a CLI only. but there are some GUIs based on it likebackintime
... – DJCrashdummy Jun 18 '17 at 18:48