]> git.vpit.fr Git - perl/modules/rgit.git/blob - bin/rgit
Don't depend on Object::Tiny anymore
[perl/modules/rgit.git] / bin / rgit
1 #!/usr/bin/perl
2
3 use strict;
4 use warnings;
5
6 use Carp qw/croak/;
7 use Config qw/%Config/;
8 use Cwd qw/cwd/;
9 use File::Spec::Functions qw/catfile path/;
10
11 use App::Rgit;
12 use App::Rgit::Utils qw/:levels/;
13 use App::Rgit::Policy;
14
15 our $VERSION;
16 BEGIN {
17  $VERSION = '0.06';
18 }
19
20 my %opts;
21 my $cmd;
22
23 BEGIN {
24  @ARGV = grep {
25   defined $cmd ? $_
26                : ( /^-([DIKV]+)$/ ? do { $opts{$_} = 1 for split //, $1; () }
27                                   : do { $cmd = $_ unless /^-/; $_ } )
28  } @ARGV;
29  $cmd = ' ' unless defined $cmd;
30 }
31
32 my $policy;
33
34 if (-t && $opts{I}) {
35  $policy = 'Interactive';
36 } elsif ($opts{K}) {
37  $policy = 'Keep';
38 }
39 $policy = eval { App::Rgit::Policy->new(name => $policy) };
40 if (not defined $policy) {
41  print STDERR $@ if $@;
42  $policy = App::Rgit::Policy->new(name => 'Default');
43 }
44
45 setpgrp 0, 0 if $Config{d_setpgrp};
46
47 my $git = $ENV{GIT_EXEC_PATH};
48 unless (defined $git) {
49  for (path) {
50   my $g = catfile $_, 'git';
51   if (-x $g) {
52    $git = $g;
53    last;
54   }
55  }
56 }
57 croak "Couldn't find any valid git executable" unless defined $git;
58
59 my $root = $ENV{GIT_DIR};
60 $root = cwd unless defined $root;
61
62 my $ar = App::Rgit->new(
63  git    => $git,
64  root   => $root,
65  cmd    => $cmd,
66  args   => \@ARGV,
67  policy => $policy,
68  debug  => $opts{D} ? INFO : WARN,
69 );
70
71 print STDOUT "rgit $VERSION\n" if $opts{V};
72
73 exit $ar->run;
74
75 __END__
76
77 =head1 NAME
78
79 rgit - Recursively execute a command on all the git repositories in a directory tree.
80
81 =head1 VERSION
82
83 Version 0.06
84
85 =head1 SYNOPSIS
86
87     rgit [-K|-I|-D|-V] [GIT_OPTIONS] COMMAND [COMMAND_ARGS]
88
89 =head1 DESCRIPTION
90
91 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.
92 Moreover, those formats are substituted in the arguments before running the command :
93
94 =over 4
95
96 =item *
97
98 C<%n> with the current repository name.
99
100 =item *
101
102 C<%g> with the relative path (based from the root directory) to the current repository.
103
104 =item *
105
106 C<%G> with the absolute path to the current repository.
107
108 =item *
109
110 C<%w> with the relative path (based from the root directory) to the current repository's working directory.
111
112 =item *
113
114 C<%W> with the absolute path to the current repository's working directory.
115
116 =item *
117
118 C<%b> with a "bareified" relative path, i.e. C<%g> if this is a bare repository, and C<%w.git> otherwise.
119
120 =item *
121
122 C<%B> with an absolute version of the "bareified" path.
123
124 =item *
125
126 C<%R> with the absolute path to the root directory.
127
128 =item *
129
130 C<%%> with a bare C<%>.
131
132 =back
133
134 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>.
135 For any of those, no format substitution is done.
136
137 You can specify which C<git> executable to use with the C<GIT_EXEC_PATH> environment variable.
138
139 =head1 COMMAND LINE SWITCHES
140
141 C<rgit> takes its options as the capital switches that comes before the git command.
142 It's possible to bundle them together.
143 They are removed from the argument list before calling C<git>.
144
145 =over 4
146
147 =item *
148
149 C<-K>
150
151 Keep processing on error.
152 The default policy is to stop whenever an error occured.
153
154 =item *
155
156 C<-I>
157
158 Enables interactive mode when the standard input is a tty.
159 Requires L<Term::ReadKey> to be installed.
160 This lets you choose interactively what to do when one of the commands returns a non-zero status.
161
162 =item *
163
164 C<-D>
165
166 Outputs diagnostics.
167
168 =item *
169
170 C<-V>
171
172 Outputs the version.
173
174 =back
175
176 =head1 EXAMPLES
177
178 Execute C<git gc> on all the repositories below the current directory :
179
180     rgit gc
181
182 Tag all the repositories with their name :
183
184     rgit tag %n
185
186 Add a remote to all repositories in "/foo/bar" to their bare counterpart in C<qux> on F<host> :
187
188     GIT_DIR="/foo/bar" rgit remote add host git://host/qux/%b
189
190 =head1 DEPENDENCIES
191
192 The core modules L<Carp>, L<Config>, L<Cwd>, L<Exporter>, L<File::Find>, L<File::Spec::Functions> and L<POSIX>.
193
194 =head1 AUTHOR
195
196 Vincent Pit, C<< <perl at profvince.com> >>, L<http://profvince.com>.
197    
198 You can contact me by mail or on C<irc.perl.org> (vincent).
199
200 =head1 BUGS
201
202 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>.  I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.
203
204 =head1 SUPPORT
205
206 You can find documentation for this module with the perldoc command.
207
208     perldoc rgit
209
210 Tests code coverage report is available at L<http://www.profvince.com/perl/cover/rgit>.
211
212 =head1 COPYRIGHT & LICENSE
213
214 Copyright 2008-2009 Vincent Pit, all rights reserved.
215
216 This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
217
218 =cut