~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
	$ rm -rf d
	$ mkdir -p d/patches
	$ cd d

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

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

	$ echo foo > foo
	$ quilt refresh
	> Refreshed patch patches/test.diff

	$ echo bar >> foo
	$ quilt refresh -z
	> Fork of patch patches/test.diff created as patches/test-2.diff

	$ echo baz >> foo
	$ quilt refresh -zbaz.diff
	> Fork of patch patches/test-2.diff created as patches/baz.diff

	$ quilt series
	> patches/test.diff
	> patches/test-2.diff
	> patches/baz.diff

	$ cd ..
	$ rm -rf d