summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndreas Gruenbacher <agruen@suse.de>2004-03-14 00:14:24 +0000
committerAndreas Gruenbacher <agruen@suse.de>2004-03-14 00:14:24 +0000
commit1c5441f25695ecd2a62a69e49ef664b9389f9957 (patch)
treed59407712f22a7acfd9efc3a6a101c288752a542
parentba4159c5560e475cf59c994bdd68888a6e57a5a6 (diff)
downloadquilt-1c5441f25695ecd2a62a69e49ef664b9389f9957.tar.gz
- Clarify help texts in push/pop.
-rw-r--r--quilt/pop.in9
-rw-r--r--quilt/push.in10
2 files changed, 11 insertions, 8 deletions
diff --git a/quilt/pop.in b/quilt/pop.in
index fdc10dd..0bddef3 100644
--- a/quilt/pop.in
+++ b/quilt/pop.in
@@ -23,10 +23,11 @@ usage()
if [ x$1 = x-h ]
then
echo $"
-Remove patch(es) from the current stack. A number of patches to remove,
-or a patch name can be specified. If a patch name is given, remove all
-patches applied on top of the named patch. If neither a number nor a
-patch name is specified, remove the next patch from the series file.
+Remove patch(es) from the series file. Without options, the topmost
+patch is removed. When a number is specified, remove the specified
+number of patches. When a patch name is specified, remove all patches
+up to and including the specified patch. Patch names may include the
+patches/ prefix, which means that filename completion can be used.
-a Remove all applied patches.
diff --git a/quilt/push.in b/quilt/push.in
index 87b9678..ae360a5 100644
--- a/quilt/push.in
+++ b/quilt/push.in
@@ -23,10 +23,12 @@ usage()
if [ x$1 = x-h ]
then
echo $"
-Apply patch(es) from the series file. A number of patches to apply, or
-a patch name can be specified. If a patch name is given, apply all
-patches up to and including the named patch. If neither a number nor a
-patch name is specified, apply the next patch from the series file.
+Apply patch(es) from the series file. Without options, the next patch
+in the series file is applied. When a number is specified, apply the
+specified number of patches. When a patch name is specified, apply
+all patches up to and including the specified patch. Patch names may
+include the patches/ prefix, which means that filename completion can
+be used.
-a Apply all patches in the series file.