summaryrefslogtreecommitdiffstats
path: root/test/space-in-filenames.test
blob: 335877a150bc048f62f5949050902376b8644a02 (plain) (blame)
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
$ mkdir patches

$ quilt new test.diff
>Patch patches/test.diff is now on top

$ echo foo > foo
$ quilt add foo
> File foo added to patch patches/test.diff

$ quilt files
> foo

$ quilt add "foo bar"
> File foo bar added to patch patches/test.diff

$ quilt files
> foo
> foo bar

$ quilt add "a: b [c]"
> File a: b [c] added to patch patches/test.diff

$ quilt files
> a: b [c]
> foo
> foo bar

$quilt remove "a: b [c]"
> File a: b [c] removed from patch patches/test.diff

$ quilt files
> foo
> foo bar

$quilt remove "foo bar"
> File foo bar removed from patch patches/test.diff

$ quilt files
> foo