1OSTREE DIFF(1) ostree diff OSTREE DIFF(1)
2
3
4
6 ostree-diff - Compare a directory against a revision
7
9 ostree diff [OPTIONS...] {REV} {TARGETDIR}
10
12 Compare directory TARGETDIR against revision REV. Shows files and
13 directories modified, added, and deleted. If there is a file in
14 TARGETDIR not in REV, it will show with an "A" for "added". If a file
15 in REV is not in TARGETDIR, it shows "D" for "deleted". "M" for
16 "modified" will also show.
17
19 --stats
20 Print various statistics.
21
22 --fs-diff
23 Print filesystem diff.
24
25 --owner-uid
26 Use file ownership user id for local files.
27
28 --owner-gid
29 Use file ownership group id for local files.
30
32 $ ostree diff my-branch^ my-branch
33
34 A /testdirectory
35 M /helloworld.txt
36
37 $ ostree diff my-branch my-branch^
38
39 D /testdirectory
40 M /helloworld.txt
41
42
43
44OSTree OSTREE DIFF(1)