Package: dgit Version: 0.14 Severity: minor Tags: patch Please see attached.
-- System Information: Debian Release: jessie/sid APT prefers unstable APT policy: (500, 'unstable') Architecture: amd64 (x86_64) Foreign Architectures: i386 Kernel: Linux 3.10-2-amd64 (SMP w/4 CPU cores) Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash Versions of packages dgit depends on: ii devscripts 2.13.3 ii dpkg-dev 1.17.1 ii git [git-core] 1:1.8.4~rc3-1 ii libdpkg-perl 1.17.1 ii libwww-perl 6.05-1 ii perl [libdigest-sha-perl] 5.14.2-21 ii realpath 1.18 Versions of packages dgit recommends: ii openssh-client [ssh-client] 1:6.2p2-6 Versions of packages dgit suggests: pn sbuild <none> -- no debconf information
>From 069054822d3a9150388b3e48e15eb8d30614849f Mon Sep 17 00:00:00 2001 From: Richard Hartmann <[email protected]> Date: Mon, 2 Sep 2013 22:45:21 +0200 Subject: [PATCH] dgit*: Implement `dgit help` --- dgit | 4 ++++ dgit.1 | 3 +++ 2 files changed, 7 insertions(+) diff --git a/dgit b/dgit index 98fd04d..73f2087 100755 --- a/dgit +++ b/dgit @@ -994,6 +994,10 @@ sub cmd_fetch { fetch(); } +sub cmd_help { + print STDOUT "$us: @_\n", $helpmsg or die $!; +} + sub cmd_pull { parseopts(); fetchpullargs(); diff --git a/dgit.1 b/dgit.1 index 5c5a55e..c55bf86 100644 --- a/dgit.1 +++ b/dgit.1 @@ -122,6 +122,9 @@ will be passed on to git-buildpackage. Tagging, signing and actually uploading should be left to dgit push. .TP +.B dgit help +Display help. +.TP .B dgit push Does an `upload', pushing the current HEAD to the archive (as a source package) and to dgit-repos (as git commits). The package must already -- 1.8.4.rc3

