~ubuntu-dev/ubuntu/lucid/quilt/lucid-201002101907

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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
	$ rm -rf d
	$ mkdir -p d/patches
	$ cd d

	$ mkdir subdir
	$ cat > subdir/file
	< old file

	$ quilt new test.patch
	> Patch %{P}test.patch is now on top

	$ quilt add subdir/file
	> File subdir/file added to patch %{P}test.patch

	$ cat > subdir/file
	< new contents

	This creates the patches/ directory:

	$ quilt refresh
	> Refreshed patch %{P}test.patch

	$ cd subdir
	$ quilt add file2
	> File subdir/file2 added to patch %{_P}test.patch

	$ cat > file2
	< another file

	$ cat > file3
	< yet another file

	$ quilt add file3
	> File subdir/file3 added to patch %{_P}test.patch

	$ rm -f file3
	$ quilt files -v
	>   subdir/file
	> + subdir/file2
	> - subdir/file3

	$ quilt diff
	> Index: d/subdir/file
	> ===================================================================
	> --- d.orig/subdir/file
	> +++ d/subdir/file
	> @@ -1 +1 @@
	> -old file
	> +new contents
	> Index: d/subdir/file2
	> ===================================================================
	> --- /dev/null
	> +++ d/subdir/file2
	> @@ -0,0 +1 @@
	> +another file
	> Index: d/subdir/file3
	> ===================================================================
	> --- d.orig/subdir/file3
	> +++ /dev/null
	> @@ -1 +0,0 @@
	> -yet another file

	$ quilt refresh
	> Refreshed patch %{_P}test.patch

	$ cd ../..
	$ rm -rf d