fix typos in "git-buildpackage --help" debian/0.2.13
authorGuido Guenther <agx@sigxcpu.org>
Sun, 3 Dec 2006 21:30:56 +0000 (22:30 +0100)
committerGuido Guenther <agx@bogon.sigxcpu.org>
Sun, 3 Dec 2006 21:30:56 +0000 (22:30 +0100)
debian/changelog
git-buildpackage

index 14e96c8dc6ed259a47c650ce79f90c34b9cc9f78..13f913996c316f53f813ef2f282426c250677fcc 100644 (file)
@@ -1,3 +1,9 @@
+git-buildpackage (0.2.13) experimental; urgency=low
+
+  * fix typos in 'git-buildpackage -v'
+
+ -- Guido Guenther <agx@sigxcpu.org>  Sun,  3 Dec 2006 22:27:11 +0100
+
 git-buildpackage (0.2.12) experimental; urgency=low
 
   * upload to experimental (Closes: #389710)
index a8870104d297bb51282743ed6fe1b6c81ad2beb0..9cf16d93304dbf7f927e720dd63cd5c2db9bd803 100755 (executable)
@@ -54,14 +54,14 @@ def main(argv):
 
     parser=optparse.OptionParser()
     parser.add_option("--git-ignore-new", action="store_true", dest="ignore_new", default=False,
-                      help="build with incommited changes in the source tree")
-    parser.add_option("--git-tag", action="store_true", dest="tag", default=False,
                       help="build with uncommited changes in the source tree")
+    parser.add_option("--git-tag", action="store_true", dest="tag", default=False,
+                      help="tag after a successful build")
     parser.add_option("--git-builder", dest="build_cmd", default=build_cmd,
-                      help="command to build the package e.g. default is 'debuild'")
+                      help="command to build the package with, default is 'debuild'")
     parser.add_option("--git-verbose", action="store_true", dest="verbose", default=False,
                       help="verbose command execution")
-    parser.add_option("--upstream-branch", dest="upstream_branch", default='upstream',
+    parser.add_option("--git-upstream-branch", dest="upstream_branch", default='upstream',
                       help="name of the upstream branch, default is 'upstream'")
     (options, args) = parser.parse_args(args)