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 68 69 70 71 72 73 74 75 76 77 78 79 80 81
|
$ mkdir patches
$ 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 -p ab
> Index: b/subdir/file
> ===================================================================
> --- a/subdir/file
> +++ b/subdir/file
> @@ -1 +1 @@
> -old file
> +new contents
> Index: b/subdir/file2
> ===================================================================
> --- /dev/null
> +++ b/subdir/file2
> @@ -0,0 +1 @@
> +another file
> Index: b/subdir/file3
> ===================================================================
> --- a/subdir/file3
> +++ /dev/null
> @@ -1 +0,0 @@
> -yet another file
# Test diff called with multiple file names, from a subdirectory
$ quilt diff --no-index -p ab file file2 no
> --- a/subdir/file
> +++ b/subdir/file
> @@ -1 +1 @@
> -old file
> +new contents
> --- /dev/null
> +++ b/subdir/file2
> @@ -0,0 +1 @@
> +another file
# Test diff called with "./" file name prefix, from a subdirectory
$ quilt diff --no-index -p ab ./file3 ./no
> --- a/subdir/file3
> +++ /dev/null
> @@ -1 +0,0 @@
> -yet another file
$ quilt refresh
> Refreshed patch %{_P}test.patch
|