]> arthur.barton.de Git - bup.git/blob - Documentation/bup-index.md
Merge branch 'mux'
[bup.git] / Documentation / bup-index.md
1 % bup-index(1) Bup %BUP_VERSION%
2 % Avery Pennarun <apenwarr@gmail.com>
3 % %BUP_DATE%
4
5 # NAME
6
7 bup-index - print and/or update the bup filesystem index
8
9 # SYNOPSIS
10
11 bup index <-p|-m|-u> [-s] [-H] [-l] [-x] [--fake-valid]
12 [--check] [-f *indexfile*] [--exclude *path*]
13 [--exclude-from *filename*] [-v] <filenames...>
14
15 # DESCRIPTION
16
17 `bup index` prints and/or updates the bup filesystem index,
18 which is a cache of the filenames, attributes, and sha-1
19 hashes of each file and directory in the filesystem.  The
20 bup index is similar in function to the `git`(1) index, and
21 can be found in `~/.bup/bupindex`.
22
23 Creating a backup in bup consists of two steps: updating
24 the index with `bup index`, then actually backing up the
25 files (or a subset of the files) with `bup save`.  The
26 separation exists for these reasons:
27
28 1. There is more than one way to generate a list of files
29 that need to be backed up.  For example, you might want to
30 use `inotify`(7) or `dnotify`(7).
31
32 2. Even if you back up files to multiple destinations (for
33 added redundancy), the file names, attributes, and hashes
34 will be the same each time.  Thus, you can save the trouble
35 of repeatedly re-generating the list of files for each
36 backup set.
37
38 3. You may want to use the data tracked by bup index for
39 other purposes (such as speeding up other programs that
40 need the same information).
41
42
43 # OPTIONS
44
45 -u, --update
46 :   (recursively) update the index for the given filenames and
47     their descendants.  One or more filenames must be
48     given.
49
50 -p, --print
51 :   print the contents of the index.  If filenames are
52     given, shows the given entries and their descendants. 
53     If no filenames are given, shows the entries starting
54     at the current working directory (.).
55     
56 -m, --modified
57 :   prints only files which are marked as modified (ie.
58     changed since the most recent backup) in the index. 
59     Implies `-p`.
60
61 -s, --status
62 :   prepend a status code (A, M, D, or space) before each
63     filename.  Implies `-p`.  The codes mean, respectively,
64     that a file is marked in the index as added, modified,
65     deleted, or unchanged since the last backup.
66     
67 -H, --hash
68 :   for each file printed, prepend the most recently
69     recorded hash code.  The hash code is normally
70     generated by `bup save`.  For objects which have not yet
71     been backed up, the hash code will be
72     0000000000000000000000000000000000000000.  Note that
73     the hash code is printed even if the file is known to
74     be modified or deleted in the index (ie. the file on
75     the filesystem no longer matches the recorded hash). 
76     If this is a problem for you, use `--status`.
77     
78 -l, --long
79 :   print more information about each file, in a similar
80     format to the `-l` option to `ls`(1).
81
82 -x, --xdev, --one-file-system
83 :   don't cross filesystem boundaries when recursing
84     through the filesystem.  Only applicable if you're
85     using `-u`.
86     
87 --fake-valid
88 :   mark specified filenames as up-to-date even if they
89     aren't.  This can be useful for testing, or to avoid
90     unnecessarily backing up files that you know are
91     boring.
92     
93 --check
94 :   carefully check index file integrity before and after
95     updating.  Mostly useful for automated tests.
96
97 -f, --indexfile=*indexfile*
98 :   use a different index filename instead of
99     `~/.bup/bupindex`.
100
101 --exclude=*path*
102 :   a path to exclude from the backup (can be used more
103     than once)
104
105 --exclude-from=*filename*
106 :   a file that contains exclude paths (can be used more
107     than once)
108
109 -v, --verbose
110 :   increase log output during update (can be used more
111     than once).  With one `-v`, print each directory as it
112     is updated; with two `-v`, print each file too.
113
114
115 # EXAMPLE
116
117     bup index -vux /etc /var /usr
118     
119
120 # SEE ALSO
121
122 `bup-save`(1), `bup-drecurse`(1), `bup-on`(1)
123
124 # BUP
125
126 Part of the `bup`(1) suite.