7 use Config qw<%Config>;
11 use App::Rgit::Utils qw<:levels>;
12 use App::Rgit::Policy;
25 : ( /^-([DIKV]+)$/ ? do { $opts{$_} = 1 for split //, $1; () }
26 : do { $cmd = $_ unless /^-/; $_ } )
28 $cmd = ' ' unless defined $cmd;
34 $policy = 'Interactive';
38 $policy = eval { App::Rgit::Policy->new(policy => $policy) };
39 if (not defined $policy) {
40 print STDERR $@ if $@;
41 $policy = App::Rgit::Policy->new(policy => 'Default');
44 setpgrp 0, 0 if $Config{d_setpgrp};
46 my $ar = App::Rgit->new(
47 git => undef, # Autodiscovery
48 root => undef, # Autodiscovery
52 debug => $opts{D} ? INFO : WARN,
55 print STDOUT "rgit $VERSION\n" if $opts{V};
63 rgit - Recursively execute a command on all the git repositories in a directory tree.
71 rgit [-K|-I|-D|-V] [GIT_OPTIONS] COMMAND [COMMAND_ARGS]
75 This utility recursively searches in a root directory (which may be the current working directory or - if it has been set - the directory given by the C<GIT_DIR> environment variable) for all git repositories, sort this list by the repository path, C<chdir> into each of them, and executes the specified git command.
76 For efficiency reasons, repositories located inside a bare repository or under the F<.git> directory of a work repository won't be searched for.
78 Moreover, those formats are substituted in the arguments before running the command :
84 C<%n> with the current repository name.
88 C<%g> with the relative path (based from the root directory) to the current repository.
92 C<%G> with the absolute path to the current repository.
96 C<%w> with the relative path (based from the root directory) to the current repository's working directory.
100 C<%W> with the absolute path to the current repository's working directory.
104 C<%b> with a "bareified" relative path, i.e. C<%g> if this is a bare repository, and C<%w.git> otherwise.
108 C<%B> with an absolute version of the "bareified" path.
112 C<%R> with the absolute path to the root directory.
116 C<%%> with a bare C<%>.
120 There are actually a few commands that are only executed once in the root directory : C<daemon>, C<gui>, C<help>, C<init> and C<version>.
121 For any of those, no format substitution is done.
123 You can specify which C<git> executable to use with the C<GIT_EXEC_PATH> environment variable.
125 =head1 COMMAND LINE SWITCHES
127 C<rgit> takes its options as the capital switches that comes before the git command.
128 It's possible to bundle them together.
129 They are removed from the argument list before calling C<git>.
137 Keep processing on error.
138 The default policy is to stop whenever an error occured.
144 Enables interactive mode when the standard input is a tty.
145 Requires L<Term::ReadKey> to be installed.
146 This lets you choose interactively what to do when one of the commands returns a non-zero status.
164 Execute C<git gc> on all the repositories below the current directory :
168 Tag all the repositories with their name :
172 Add a remote to all repositories in "/foo/bar" to their bare counterpart in C<qux> on F<host> :
174 GIT_DIR="/foo/bar" rgit remote add host git://host/qux/%b
178 The core modules L<Carp>, L<Config>, L<Cwd>, L<Exporter>, L<File::Find>, L<File::Spec> and L<POSIX>.
182 Vincent Pit, C<< <perl at profvince.com> >>, L<http://profvince.com>.
184 You can contact me by mail or on C<irc.perl.org> (vincent).
188 Please report any bugs or feature requests to C<bug-rgit at rt.cpan.org>, or through the web interface at L<http://rt.cpan.org/NoAuth/ReportBug.html?Queue=rgit>.
189 I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.
193 You can find documentation for this module with the perldoc command.
197 Tests code coverage report is available at L<http://www.profvince.com/perl/cover/rgit>.
199 =head1 COPYRIGHT & LICENSE
201 Copyright 2008,2009,2010 Vincent Pit, all rights reserved.
203 This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.