]> git.vpit.fr Git - perl/modules/rgit.git/commitdiff
git-gui should be executed once
authorVincent Pit <vince@profvince.com>
Tue, 7 Oct 2008 15:31:28 +0000 (17:31 +0200)
committerVincent Pit <vince@profvince.com>
Tue, 7 Oct 2008 15:31:28 +0000 (17:31 +0200)
bin/rgit
lib/App/Rgit/Command.pm

index 6531094472de7b29ca98bedcd9a8e2c15060c8d3..6a56df7c8b0e5051ffa20dd777e58525cf399e83 100755 (executable)
--- a/bin/rgit
+++ b/bin/rgit
@@ -96,7 +96,7 @@ C<^^> with a bare C<^>.
 
 =back
 
-There are actually a few commands that are only executed once in the current directory : C<version>, C<help>, C<daemon> and C<init>.
+There are actually a few commands that are only executed once in the current directory : C<daemon>, C<gui>, C<help>, C<init> and C<version>.
 For any of those, no format substitution is done.
 
 You can specify which C<git> executable to use with the C<GIT_EXEC_PATH> environment variable.
index 42bd1f7ac204d59b2bf7a1bfcc4cbb4a9a7e2aff..026c73a7047a2082bda40a3f52a9b81dc14a7381 100644 (file)
@@ -36,7 +36,7 @@ Creates a new command object for C<$cmd> that is bound to be called with argumen
 =cut
 
 my %commands;
-__PACKAGE__->action($_ => 'Once') for qw/version help daemon init/, ' ';
+__PACKAGE__->action($_ => 'Once') for qw/daemon gui help init version/, ' ';
 
 sub new {
  my ($class, %args) = &validate;