1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
|
Subject: Remove broken commands from the user interface
From: Michael Schutte <michi@debian.org>
The attach and milestone commands are listed in --help and available
from the command line, but don’t actually have a working implementation
right now. Don’t show them in the Debian build.
Index: devel/lib/ticgit-ng/command.rb
===================================================================
--- devel.orig/lib/ticgit-ng/command.rb 2013-06-27 20:45:43.000000000 +0200
+++ devel/lib/ticgit-ng/command.rb 2013-06-27 20:46:01.000000000 +0200
@@ -10,7 +10,7 @@
end
register 'Assign', 'Assings a ticket to someone', 'assign'
- register 'Attach', 'Attach file to ticket', 'attach'
+# register 'Attach', 'Attach file to ticket', 'attach'
register 'Checkout', 'Checkout a ticket', 'checkout', 'co'
register 'Comment', 'Comment on a ticket', 'comment'
register 'Help', 'Show help for a ticgit command', 'help'
|