-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexcluded
43 lines (36 loc) · 1.25 KB
/
excluded
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
# Assumes source file to be /home/". if the pattern ends with a / then it will
# only match a directory, not a regular file, symlink, or device. if the pattern
# starts with a / then it is anchored to a particular spot in the hierarchy of
# files, otherwise it is matched against the end of the pathname. This is
# similar to a leading ^ in regular expressions. Thus "/foo" would match a name
# of "foo" at either the "root of the transfer" (for a global rule) or in the
# merge-file's directory (for a per-directory rule). An unqualified "foo" would
# match a name of "foo" anywhere in the tree because the algorithm is applied
# recursively from the top down; it behaves as if each path component gets a
# turn at being the end of the filename.
# EXCLUSION LIST BLOCK
# backup directory
/jaggij/Backup/
# CACHE
/jaggij/.ccache/*
/jaggij/.cache/*
/jaggij/.emacs.d/.cache/*
# RECOVERABLE FROM OTHER SOURCE (trimming backup size)
/jaggij/Downloads/*
/jaggij/Videos/*
/jaggij/Music/*
/jaggij/Apps/Cataclysm-DDA/*
/jaggij/.cataclysm-dda/*
# ROOT AND OTHER USERS
/lost+found/
/google/
/jaggij/.protonvpn-cli/
/jaggij/sysbackup/
"lastbackupsys.log"
"logsys_*"
# OTHERS
".ecryptfs"
".VirtualBoxVms"
/jaggij/verateddy
/jaggij/.local/share/Trash
# END OF EXCLUSION LIST BLOCK