All patches and comments are welcome. Please squash your changes to logical
commits before using git-format-patch and git-send-email to
patches@git.madduck.net.
If you'd read over the Git project's submission guidelines and adhered to them,
I'd be especially grateful.
5 mr - a tool to manage all your version control repos
9 B<mr> [options] checkout
11 B<mr> [options] update
13 B<mr> [options] status
15 B<mr> [options] clean [-f]
17 B<mr> [options] commit [-m "message"]
19 B<mr> [options] record [-m "message"]
29 B<mr> [options] grep pattern
31 B<mr> [options] run command [param ...]
33 B<mr> [options] bootstrap src [directory]
35 B<mr> [options] register [repository]
37 B<mr> [options] config section ["setting=[value]" ...]
39 B<mr> [options] action [params ...]
41 B<mr> [options] [online|offline]
43 B<mr> [options] remember action [params ...]
47 B<mr> is a tool to manage all your version control repos. It can checkout,
48 update, or perform other actions on a set of repositories as if they were
49 one combined repository. It supports any combination of subversion, git,
50 cvs, mercurial, bzr, darcs, fossil and veracity repositories, and support
51 for other version control systems can easily be added.
53 B<mr> cds into and operates on all registered repositories at or below your
54 working directory. Or, if you are in a subdirectory of a repository that
55 contains no other registered repositories, it will stay in that directory,
56 and work on only that repository,
58 B<mr> is configured by .mrconfig files, which list the repositories. It
59 starts by reading the .mrconfig file in your home directory, and this can
60 in turn chain load .mrconfig files from repositories. It also automatically
61 looks for a .mrconfig file in the current directory, or in one of its
64 These predefined commands should be fairly familiar to users of any version
69 =item checkout (or co)
71 Checks out any repositories that are not already checked out.
75 Updates each repository from its configured remote repository.
77 If a repository isn't checked out yet, it will first check it out.
81 Displays a status report for each repository, showing what
82 uncommitted changes are present in the repository. For distributed version
83 control systems, also shows unpushed local branches.
87 Print ignored files, untracked files and other cruft in the working directory.
89 The optional -f parameter allows removing the files as well as printing them.
93 Commits changes to each repository. (By default, changes are pushed to the
94 remote repository too, when using distributed systems like git. If you
95 don't like this default, you can change it in your .mrconfig, or use record
98 The optional -m parameter allows specifying a commit message.
102 Records changes to the local repository, but does not push them to the
103 remote repository. Only supported for distributed version control systems.
105 The optional -m parameter allows specifying a commit message.
109 Fetches from each repository's remote repository, but does not
110 update the working copy. Only supported for some distributed version
115 Pushes committed local changes to the remote repository. A no-op for
116 centralized version control systems.
120 Show a diff of uncommitted changes.
128 Searches for a pattern in each repository using the grep subcommand. Uses
129 ack-grep on VCS that do not have their own.
131 =item run command [param ...]
133 Runs the specified command in each repository.
137 These commands are also available:
141 =item bootstrap src [directory]
143 Causes mr to retrieve the source C<src> and use it as a .mrconfig file to
144 checkout the repositories listed in it, into the specified directory.
146 B<mr> understands several types of sources:
152 C<src> may be an URL understood by B<curl>.
156 To use B<scp> to download, the C<src> may have the form
157 C<ssh://[user@]host:file>.
161 You can retrieve the config file by other means and pass its B<path> as C<src>.
165 If source C<src> consists in a single dash C<->, config file is read from
170 The directory will be created if it does not exist. If no directory is
171 specified, the current directory will be used.
173 As a special case, if source C<src> includes a repository named ".", that
174 is checked out into the top of the specified directory.
178 List the repositories that mr will act on.
182 Register an existing repository in a mrconfig file. By default, the
183 repository in the current directory is registered, or you can specify a
184 directory to register.
186 The mrconfig file that is modified is chosen by either the -c option, or by
187 looking for the closest known one at or in a parent of the current directory.
191 Adds, modifies, removes, or prints a value from a mrconfig file. The next
192 parameter is the name of the section the value is in. To add or modify
193 values, use one or more instances of "setting=value". Use "setting=" to
194 remove a setting. Use just "setting" to get the value of a that setting.
196 For example, to add (or edit) a repository in src/foo:
198 mr config src/foo checkout="svn co svn://example.com/foo/trunk foo"
200 To show the command that mr uses to update the repository in src/foo:
202 mr config src/foo update
204 To see the built-in library of shell functions contained in mr:
206 mr config DEFAULT lib
208 The mrconfig file that is used is chosen by either the -c option, or by
209 looking for the closest known one at or in a parent of the current directory.
213 Advises mr that it is in offline mode. Any commands that fail in
214 offline mode will be remembered, and retried when mr is told it's online.
218 Advices mr that it is in online mode again. Commands that failed while in
219 offline mode will be re-run.
223 Remember a command, to be run later when mr re-enters online mode. This
224 implicitly puts mr into offline mode. The command can be any regular mr
225 command. This is useful when you know that a command will fail due to being
226 offline, and so don't want to run it right now at all, but just remember
227 to run it when you go back online.
235 Actions can be abbreviated to any unambiguous substring, so
236 "mr st" is equivalent to "mr status", and "mr up" is equivalent to "mr
239 Additional parameters can be passed to most commands, and are passed on
240 unchanged to the underlying version control system. This is mostly useful
241 if the repositories mr will act on all use the same version control
250 =item --directory directory
252 Specifies the topmost directory that B<mr> should work in. The default is
253 the current working directory.
257 =item --config mrconfig
259 Use the specified mrconfig file. The default is to use both F<~/.mrconfig>
260 as well as look for a F<.mrconfig> file in the current directory, or in one
261 of its parent directories.
267 Force mr to act on repositories that would normally be skipped due to their
280 Minimise output. If a command fails or there is any output then the usual
281 output will be shown.
287 Be quiet. This suppresses mr's usual output, as well as any output from
288 commands that are run (including stderr output). If a command fails,
289 the output will be shown.
295 Accept untrusted SSL certificates when bootstrapping.
301 Expand the statistics line displayed at the end to include information
302 about exactly which repositories failed and were skipped, if any.
308 Interactive mode. If a repository fails to be processed, a subshell will be
309 started which you can use to resolve or investigate the problem. Exit the
310 subshell to continue the mr run.
314 =item --no-recurse [number]
316 If no number if specified, just operate on the repository for the current
317 directory, do not recurse into deeper repositories.
319 If a number is specified, will recurse into repositories at most that many
320 subdirectories deep. For example, with -n 2 it would recurse into ./src/foo,
321 but not ./src/packages/bar.
325 =item --jobs [number]
327 Run the specified number of jobs in parallel, or an unlimited number of jobs
328 with no number specified. This can greatly speed up operations such as updates.
329 It is not recommended for interactive operations.
331 Note that running more than 10 jobs at a time is likely to run afoul of
332 ssh connection limits. Running between 3 and 5 jobs at a time will yield
333 a good speedup in updates without loading the machine too much.
339 Trust all mrconfig files even if they are not listed in F<~/.mrtrust>.
346 This obsolete flag is ignored.
350 =head1 MRCONFIG FILES
352 Here is an example F<.mrconfig> file:
355 checkout = svn checkout svn://svn.example.com/src/trunk src
359 checkout = git clone git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6.git &&
361 git checkout -b mybranch origin/master
363 The F<.mrconfig> file uses a variant of the INI file format. Lines
364 starting with "#" are comments. Values can be continued to the
365 following line by indenting the line with whitespace.
367 The C<DEFAULT> section allows setting default values for the sections that
370 The C<ALIAS> section allows adding aliases for actions. Each setting
371 is an alias, and its value is the action to use.
373 All other sections add repositories. The section header specifies the
374 directory where the repository is located. This is relative to the directory
375 that contains the mrconfig file, but you can also choose to use absolute
376 paths. (Note that you can use environment variables in section names; they
377 will be passed through the shell for expansion. For example,
378 C<[$HOSTNAME]>, or C<[${HOSTNAME}foo]>).
380 Within a section, each setting defines a shell command to run to handle a
381 given action. mr contains default handlers for "update", "status",
382 "commit", and other standard actions.
384 Normally you only need to specify what to do for "checkout". Here you
385 specify the command to run in order to create a checkout of the repository.
386 The command will be run in the parent directory, and must create the
387 repository's directory. So use C<git clone>, C<svn checkout>, C<bzr branch>
388 or C<bzr checkout> (for a bound branch), etc.
390 Note that these shell commands are run in a C<set -e> shell
391 environment, where any additional parameters you pass are available in
392 C<$@>. All commands other than "checkout" are run inside the repository,
393 though not necessarily at the top of it.
395 The C<MR_REPO> environment variable is set to the path to the top of the
396 repository. (For the "register" action, "MR_REPO" is instead set to the
397 basename of the directory that should be created when checking the
400 The C<MR_CONFIG> environment variable is set to the .mrconfig file
401 that defines the repo being acted on, or, if the repo is not yet in a config
402 file, the F<.mrconfig> file that should be modified to register the repo.
404 The C<MR_ACTION> environment variable is set to the command being run
405 (update, checkout, etc).
407 A few settings have special meanings:
413 If "skip" is set and its command returns true, then B<mr>
414 will skip acting on that repository. The command is passed the action
417 Here are two examples. The first skips the repo unless
418 mr is run by joey. The second uses the hours_since function
419 (included in mr's built-in library) to skip updating the repo unless it's
420 been at least 12 hours since the last update.
424 skip = test `whoami` != joey
428 skip = [ "$1" = update ] && ! hours_since "$1" 12
430 Another way to use skip is for a lazy checkout. This makes mr skip
431 operating on a repo unless it already exists. To enable the
432 repo, you have to explicitly check it out (using "mr --force -d foo checkout").
440 The "order" setting can be used to override the default ordering of
441 repositories. The default order value is 10. Use smaller values to make
442 repositories be processed earlier, and larger values to make repositories
445 Note that if a repository is located in a subdirectory of another
446 repository, ordering it to be processed earlier is not recommended.
450 If "chain" is set and its command returns true, then B<mr>
451 will try to load a F<.mrconfig> file from the root of the repository.
455 If "include" is set, its command is ran, and should output
456 additional mrconfig file content. The content is included as if it were
457 part of the including file.
459 Unlike everything else, "include" does not need to be placed within a section.
461 B<mr> ships several libraries that can be included to add support for
462 additional version control type things (unison, git-svn, git-fake-bare,
463 git-subtree). To include them all, you could use:
465 include = cat /usr/share/mr/*
467 See the individual files for details.
471 If "deleted" is set and its command returns true, then
472 B<mr> will treat the repository as deleted. It won't ever actually delete
473 the repository, but it will warn if it sees the repository's directory.
474 This is useful when one mrconfig file is shared among multiple machines,
475 to keep track of and remember to delete old repositories.
479 The "lib" setting can contain some shell code that will be run
480 before each command, this can be a useful way to define shell
481 functions for other commands to use.
483 Unlike most other settings, this can be specified multiple times, in
484 which case the chunks of shell code are accumulatively concatenated
489 If "fixups" is set, its command is run whenever a repository
490 is checked out, or updated. This provides an easy way to do things
491 like permissions fixups, or other tweaks to the repository content,
492 whenever the repository is changed.
496 When looking for a command to run for a given action, mr first looks for
497 a setting with the same name as the action. If that is not found, it
498 looks for a setting named "VCS_action" (substituting in the name of the
499 version control system and the action).
501 Internally, mr has settings for "git_update", "svn_update", etc. To change
502 the action that is performed for a given version control system, you can
503 override these VCS specific actions. To add a new version control system,
504 you can just add VCS specific actions for it.
508 If "pre_action" is set, its command is run before mr performs the
509 specified action. Similarly, "post_action" commands are run after mr
510 successfully performs the specified action. For example, "pre_commit" is
511 run before committing; "post_update" is run after updating.
515 Any setting can be suffixed with C<_append>, to add an additional value
516 to the existing value of the setting. In this way, actions
517 can be constructed accumulatively.
521 The name of the version control system is itself determined by
522 running each defined "VCS_test" action, until one succeeds.
526 =head1 UNTRUSTED MRCONFIG FILES
528 Since mrconfig files can contain arbitrary shell commands, they can do
529 anything. This flexibility is good, but it also allows a malicious mrconfig
530 file to delete your whole home directory. Such a file might be contained
531 inside a repository that your main F<~/.mrconfig> checks out. To
532 avoid worries about evil commands in a mrconfig file, mr defaults to
533 reading all mrconfig files other than the main F<~/.mrconfig> in untrusted
534 mode. In untrusted mode, mrconfig files are limited to running only known
535 safe commands (like "git clone") in a carefully checked manner.
537 To configure mr to trust other mrconfig files, list them in F<~/.mrtrust>.
538 One mrconfig file should be listed per line. Either the full pathname
539 should be listed, or the pathname can start with F<~/> to specify a file
540 relative to your home directory.
542 =head1 OFFLINE LOG FILE
544 The F<~/.mrlog> file contains commands that mr has remembered to run later,
545 due to being offline. You can delete or edit this file to remove commands,
546 or even to add other commands for 'mr online' to run. If the file is
547 present, mr assumes it is in offline mode.
551 mr can be extended to support things such as unison and git-svn. Some
552 files providing such extensions are available in F</usr/share/mr/>. See
553 the documentation in the files for details about using them.
557 mr returns nonzero if a command failed in any of the repositories.
561 Copyright 2007-2011 Joey Hess <joey@kitenet.net>
563 Licensed under the GNU GPL version 2 or higher.
565 http://myrepos.branchable.com/
572 use Cwd qw(getcwd abs_path);
574 # things that can happen when mr runs a command
583 my $config_overridden=0;
595 my $directory=getcwd();
596 my $terminal=-t STDOUT && eval{require IO::Pty::Easy;IO::Pty::Easy->import();1;};
598 my $HOME_MR_CONFIG = "$ENV{HOME}/.mrconfig";
599 $ENV{MR_CONFIG}=find_mrconfig();
606 my (@ok, @failed, @skipped);
616 # Runs a shell command using a supplied function.
617 # The lib will be included in the shell command line, and any params
618 # will be available in the shell as $1, $2, etc.
621 my ($action, $topdir, $subdir, $command, $params, $runner) = @_;
623 # optimisation: avoid running the shell for true and false
624 if ($command =~ /^\s*true\s*$/) {
628 elsif ($command =~ /^\s*false\s*$/) {
633 my $quotedparams=join(" ", (map { shellquote($_) } @$params));
634 my $lib=exists $config{$topdir}{$subdir}{lib} ?
635 $config{$topdir}{$subdir}{lib}."\n" : "";
636 if ($verbose && (! defined $lastlib || $lastlib ne $lib)) {
637 print "mr library now: >>$lib<<\n";
640 my $shellcode="set -e;".$lib.
641 "my_sh(){ $command\n }; my_sh $quotedparams";
642 print "mr $action: running $action >>$command<<\n" if $verbose;
643 $runner->($shellcode);
650 if ($s =~ m/^perl:\s+(.*)/s) {
651 return $perl_cache{$1} if exists $perl_cache{$1};
652 my $sub=eval "sub {$1}";
653 if (! defined $sub) {
654 print STDERR "mr: bad perl code in $id: $@\n";
656 return $perl_cache{$1} = $sub;
663 my ($action, $dir, $topdir, $subdir) = @_;
665 if (exists $vcs{$dir}) {
671 foreach my $vcs_test (
673 length $a <=> length $b
676 } grep { /_test$/ } keys %{$config{$topdir}{$subdir}}) {
677 my ($vcs)=$vcs_test =~ /(.*)_test/;
678 my $p=perl($vcs_test, $config{$topdir}{$subdir}{$vcs_test});
683 $test="my_$vcs_test() {\n$config{$topdir}{$subdir}{$vcs_test}\n}\n".$test;
684 $test.="if my_$vcs_test; then echo $vcs; fi\n";
689 foreach my $vcs (keys %perltest) {
690 if ($perltest{$vcs}->()) {
695 push @vcs, split(/\n/,
696 runsh("vcs test", $topdir, $subdir, $test, [], sub {
702 print STDERR "mr $action: found multiple possible repository types (@vcs) for ".fulldir($topdir, $subdir)."\n";
706 return $vcs{$dir}=undef;
709 return $vcs{$dir}=$vcs[0];
714 my ($action, $dir, $topdir, $subdir, $is_checkout) = @_;
716 if (exists $config{$topdir}{$subdir}{$action}) {
717 return $config{$topdir}{$subdir}{$action};
724 my $vcs=vcs_test(@_);
727 exists $config{$topdir}{$subdir}{$vcs."_".$action}) {
728 return $config{$topdir}{$subdir}{$vcs."_".$action};
736 my ($topdir, $subdir) = @_;
737 return $subdir =~ /^\// ? $subdir : $topdir.$subdir;
740 sub terminal_friendly_spawn {
741 my $actionmsg = shift;
747 my $pty = IO::Pty::Easy->new;
749 while ($pty->is_active) {
750 my $data = $pty->read();
751 $output .= $data if defined $data;
755 $output = qx/$sh 2>&1/;
758 if ($quiet && $ret != 0) {
759 print "$actionmsg\n" if $actionmsg;
760 print STDERR $output;
761 } elsif (!$quiet && (!$minimal || $output)) {
762 print "$actionmsg\n" if $actionmsg;
765 return ($ret, $output ? 1 : 0);
769 my ($action, $dir, $topdir, $subdir, $force_checkout) = @_;
770 my $fulldir=fulldir($topdir, $subdir);
773 $ENV{MR_CONFIG}=$configfiles{$topdir};
774 my $is_checkout=($action eq 'checkout');
775 my $is_update=($action =~ /update/);
777 ($ENV{MR_REPO}=$dir) =~ s!/$!!;
778 $ENV{MR_ACTION}=$action;
780 foreach my $testname ("skip", "deleted") {
781 next if $force && $testname eq "skip";
783 my $testcommand=findcommand($testname, $dir, $topdir, $subdir, $is_checkout);
785 if (defined $testcommand) {
786 my $ret=runsh "$testname test", $topdir, $subdir,
787 $testcommand, [$action],
788 sub { system(shift()) };
790 if (($? & 127) == 2) {
791 print STDERR "mr $action: interrupted\n";
795 print STDERR "mr $action: $testname test received signal ".($? & 127)."\n";
799 if ($ret >> 8 == 0) {
800 if ($testname eq "deleted") {
802 print STDERR "mr error: $dir should be deleted yet still exists\n";
806 print "mr $action: skip $dir skipped\n" if $verbose;
814 if (! $force_checkout) {
816 print "mr $action: $dir already exists, skipping checkout\n" if $verbose;
820 $dir=~s/^(.*)\/[^\/]+\/?$/$1/;
825 return action("checkout", $dir, $topdir, $subdir);
829 my $command=findcommand($action, $dir, $topdir, $subdir, $is_checkout);
831 if ($is_checkout && ! -d $dir) {
832 print "mr $action: creating parent directory $dir\n" if $verbose;
833 system("mkdir", "-p", $dir);
836 if (! $no_chdir && ! chdir($dir)) {
837 print STDERR "mr $action: failed to chdir to $dir: $!\n";
840 elsif (! defined $command) {
841 my $vcs=vcs_test(@_);
842 if (! defined $vcs) {
843 print STDERR "mr $action: unknown repository type and no defined $action command for $fulldir\n";
847 print STDERR "mr $action: no defined action for $vcs repository $fulldir, skipping\n" unless $minimal;
854 $actionmsg="mr $action: $fulldir";
858 $s=~s/^\Q$fulldir\E\/?//;
859 $actionmsg="mr $action: $fulldir (in subdir $s)";
861 print "$actionmsg\n" unless $quiet || $minimal;
863 my ($hookret, $hook_out)=hook("pre_$action", $topdir, $subdir);
864 return $hookret if $hookret != OK;
866 my ($ret, $out)=runsh $action, $topdir, $subdir,
867 $command, \@ARGV, sub {
869 if (!$jobs || $jobs > 1 || $quiet || $minimal) {
870 return terminal_friendly_spawn($actionmsg, $sh, $quiet, $minimal);
877 if (($? & 127) == 2) {
878 print STDERR "mr $action: interrupted\n";
882 print STDERR "mr $action: received signal ".($? & 127)."\n";
885 print STDERR "mr $action: failed ($ret)\n" if $verbose;
886 if ($ret >> 8 != 0) {
887 print STDERR "mr $action: command failed\n";
888 if (-e "$ENV{HOME}/.mrlog" && $action ne 'remember') {
889 # recreate original command line to
890 # remember, and avoid recursing
892 @ARGV=('-n', $action, @orig);
893 action("remember", $dir, $topdir, $subdir);
898 print STDERR "mr $action: command died ($ret)\n";
903 if ($is_checkout && ! -d $dir) {
904 print STDERR "mr $action: $dir missing after checkout\n";;
908 my ($ret, $hook_out)=hook("post_$action", $topdir, $subdir);
909 return $ret if $ret != OK;
911 if ($is_checkout || $is_update) {
912 if ($is_checkout && ! $no_chdir) {
913 if (! chdir($checkout_dir)) {
914 print STDERR "mr $action: failed to chdir to $checkout_dir: $!\n";
918 my ($ret, $hook_out)=hook("fixups", $topdir, $subdir);
919 return $ret if $ret != OK;
922 return (OK, $out || $hook_out);
928 my ($hook, $topdir, $subdir) = @_;
930 my $command=$config{$topdir}{$subdir}{$hook};
931 return OK unless defined $command;
932 my ($ret,$out)=runsh $hook, $topdir, $subdir, $command, [], sub {
934 if (!$jobs || $jobs > 1 || $quiet || $minimal) {
935 return terminal_friendly_spawn(undef, $sh, $quiet, $minimal);
942 if (($? & 127) == 2) {
943 print STDERR "mr $hook: interrupted\n";
947 print STDERR "mr $hook: received signal ".($? & 127)."\n";
958 # run actions on multiple repos, in parallel
968 while (@fhs or @repos) {
969 while ((!$jobs || $running < $jobs) && @repos) {
971 my $repo = shift @repos;
972 pipe(my $outfh, CHILD_STDOUT);
973 pipe(my $errfh, CHILD_STDERR);
975 unless ($pid = fork) {
976 die "mr $action: cannot fork: $!" unless defined $pid;
977 open(STDOUT, ">&CHILD_STDOUT") || die "mr $action cannot reopen stdout: $!";
978 open(STDERR, ">&CHILD_STDERR") || die "mr $action cannot reopen stderr: $!";
983 exit +(action($action, @$repo))[0];
987 push @active, [$pid, $repo];
988 push @fhs, [$outfh, $errfh];
991 my ($rin, $rout) = ('','');
993 foreach my $fh (@fhs) {
994 next unless defined $fh;
995 vec($rin, fileno($fh->[0]), 1) = 1 if defined $fh->[0];
996 vec($rin, fileno($fh->[1]), 1) = 1 if defined $fh->[1];
998 $nfound = select($rout=$rin, undef, undef, 1);
999 foreach my $channel (0, 1) {
1000 foreach my $i (0..$#fhs) {
1001 next unless defined $fhs[$i];
1002 my $fh = $fhs[$i][$channel];
1003 next unless defined $fh;
1004 if (vec($rout, fileno($fh), 1) == 1) {
1006 if (sysread($fh, $r, 1024) == 0) {
1008 $fhs[$i][$channel] = undef;
1009 if (! defined $fhs[$i][0] &&
1010 ! defined $fhs[$i][1]) {
1011 waitpid($active[$i][0], 0);
1012 print STDOUT $out[$i][0];
1013 print STDERR $out[$i][1];
1014 record($active[$i][1], $? >> 8, $out[$i][0] || $out[$i][1]);
1015 splice(@fhs, $i, 1);
1016 splice(@active, $i, 1);
1017 splice(@out, $i, 1);
1021 $out[$i][$channel] .= $r;
1029 my $dir=shift()->[0];
1035 print "\n" unless $quiet || ($minimal && !$out);
1037 elsif ($ret == FAILED) {
1039 chdir($dir) unless $no_chdir;
1040 print STDERR "mr: Starting interactive shell. Exit shell to continue.\n";
1041 system((getpwuid($<))[8], "-i");
1046 elsif ($ret == SKIPPED) {
1047 push @skipped, $dir;
1049 elsif ($ret == ABORT) {
1053 die "unknown exit status $ret";
1059 if (! @ok && ! @failed && ! @skipped) {
1060 die "mr $action: no repositories found to work on\n";
1062 print "mr $action: finished (".join("; ",
1063 showstat($#ok+1, "ok", "ok"),
1064 showstat($#failed+1, "failed", "failed"),
1065 showstat($#skipped+1, "skipped", "skipped"),
1066 ).")\n" unless $quiet || $minimal;
1069 print "mr $action: (skipped: ".join(" ", @skipped).")\n" unless $quiet || $minimal;
1072 print STDERR "mr $action: (failed: ".join(" ", @failed).")\n";
1082 return "$count ".($count > 1 ? $plural : $singular);
1087 # an ordered list of repos
1090 foreach my $topdir (sort keys %config) {
1091 foreach my $subdir (sort keys %{$config{$topdir}}) {
1095 order => $config{$topdir}{$subdir}{order},
1100 $a->{order} <=> $b->{order}
1102 $a->{topdir} cmp $b->{topdir}
1104 $a->{subdir} cmp $b->{subdir}
1110 my $topdir=$repo->{topdir};
1111 my $subdir=$repo->{subdir};
1112 my $ret=($subdir =~/^\//) ? $subdir : $topdir.$subdir;
1117 # Figure out which repos to act on. Returns a list of array refs
1120 # [ "$full_repo_path/", "$mr_config_path/", $section_header ]
1123 foreach my $repo (repolist()) {
1124 my $topdir=$repo->{topdir};
1125 my $subdir=$repo->{subdir};
1127 next if $subdir eq 'DEFAULT';
1128 my $dir=repodir($repo);
1130 $dir.="/" unless $dir=~/\/$/;
1131 $d.="/" unless $d=~/\/$/;
1132 next if $dir ne $d && $dir !~ /^\Q$d\E/;
1133 if (defined $max_depth) {
1134 my @a=split('/', $dir);
1135 my @b=split('/', $d);
1136 do { } while (@a && @b && shift(@a) eq shift(@b));
1137 next if @a > $max_depth || @b > $max_depth;
1139 push @repos, [$dir, $topdir, $subdir];
1142 # fallback to find a leaf repo
1143 foreach my $repo (reverse repolist()) {
1144 my $topdir=$repo->{topdir};
1145 my $subdir=$repo->{subdir};
1147 next if $subdir eq 'DEFAULT';
1148 my $dir=repodir($repo);
1150 $dir.="/" unless $dir=~/\/$/;
1151 $d.="/" unless $d=~/\/$/;
1152 if ($d=~/^\Q$dir\E/) {
1153 push @repos, [$dir, $topdir, $subdir];
1175 sub is_trusted_config {
1176 my $config=shift; # must be abs_pathed already
1178 # We always trust ~/.mrconfig.
1179 return 1 if $config eq abs_path($HOME_MR_CONFIG);
1181 return 1 if $trust_all;
1183 my $trustfile=$ENV{HOME}."/.mrtrust";
1186 $trusted{$HOME_MR_CONFIG}=1;
1187 if (open (TRUST, "<", $trustfile)) {
1190 s/^~\//$ENV{HOME}\//;
1192 $trusted{$d}=1 if defined $d;
1198 return $trusted{$config};
1202 sub is_trusted_repo {
1205 # Tightly limit what is allowed in a repo name.
1206 # No ../, no absolute paths, and no unusual filenames
1207 # that might try to escape to the shell.
1208 return $repo =~ /^[-_.+\/A-Za-z0-9]+$/ &&
1209 $repo !~ /\.\./ && $repo !~ /^\//;
1212 sub is_trusted_checkout {
1215 # To determine if the command is safe, compare it with the
1216 # *_trusted_checkout config settings. Those settings are
1217 # templates for allowed commands, so make sure that each word
1218 # of the command matches the corresponding word of the template.
1221 foreach my $word (split(' ', $command)) {
1223 if ($word=~/^'(.*)'$/) {
1226 elsif ($word=~/^"(.*)"$/) {
1233 foreach my $key (grep { /_trusted_checkout$/ }
1234 keys %{$config{''}{DEFAULT}}) {
1235 my @twords=split(' ', $config{''}{DEFAULT}{$key});
1236 next if @words > @twords;
1240 for (my $c=0; $c < @twords && $match; $c++) {
1241 if ($twords[$c] eq '$url') {
1242 # Match all the typical characters found in
1243 # urls, plus @ which svn can use. Note
1244 # that the "url" might also be a local
1247 defined $words[$c] &&
1248 $words[$c] =~ /^[-_.+:@\/A-Za-z0-9]+$/
1252 elsif ($twords[$c] eq '$repo') {
1253 # If a repo is not specified, assume it
1254 # will be the last path component of the
1255 # url, or something derived from it, and
1257 if (! defined $words[$c] && defined $url) {
1258 ($words[$c])=$url=~/\/([^\/]+)\/?$/;
1262 defined $words[$c] &&
1263 is_trusted_repo($words[$c])
1266 elsif (defined $words[$c] && $words[$c]=~/^($twords[$c])$/) {
1283 my $bootstrap_src=shift;
1289 if (ref $f eq 'GLOB') {
1295 my $absf=abs_path($f);
1296 if ($loaded{$absf}) {
1301 $trusted=is_trusted_config($absf);
1303 if (! defined $dir) {
1304 ($dir)=$f=~/^(.*\/)[^\/]+$/;
1305 if (! defined $dir) {
1310 $dir=abs_path($dir)."/";
1312 if (! exists $configfiles{$dir}) {
1313 $configfiles{$dir}=$f;
1316 # copy in defaults from first parent
1318 while ($parent=~s/^(.*\/)[^\/]+\/?$/$1/) {
1319 if ($parent eq '/') {
1322 if (exists $config{$parent} &&
1323 exists $config{$parent}{DEFAULT}) {
1324 $config{$dir}{DEFAULT}={ %{$config{$parent}{DEFAULT}} };
1333 print "mr: loading config $f\n" if $verbose;
1334 open($in, "<", $f) || die "mr: open $f: $!\n";
1337 close $in unless ref $f eq 'GLOB';
1341 # Keep track of the current line in the config file;
1342 # when a file is included track the current line from the include.
1347 my $nextline = sub {
1359 my $lineerror = sub {
1361 if (defined $included) {
1362 die "mr: $msg at $f line $lineno, included line: $line\n";
1365 die "mr: $msg at $f line $lineno\n";
1368 my $trusterror = sub {
1371 if (defined $bootstrap_src) {
1372 die "mr: $msg in untrusted $bootstrap_src line $lineno\n".
1373 "(To trust this url, --trust-all can be used; but please use caution;\n".
1374 "this can allow arbitrary code execution!)\n";
1377 die "mr: $msg in untrusted $f line $lineno\n".
1378 "(To trust this file, list it in ~/.mrtrust.)\n";
1385 next if /^\s*\#/ || /^\s*$/;
1387 if (! $trusted && /[[:cntrl:]]/) {
1388 $trusterror->("illegal control character");
1391 if (/^\[([^\]]*)\]\s*$/) {
1395 if (! is_trusted_repo($section) ||
1396 $section eq 'ALIAS' ||
1397 $section eq 'DEFAULT') {
1398 $trusterror->("illegal section \"[$section]\"");
1401 $section=expandenv($section) if $trusted;
1402 if ($section ne 'ALIAS' &&
1403 ! exists $config{$dir}{$section} &&
1404 exists $config{$dir}{DEFAULT}) {
1406 $config{$dir}{$section}={ %{$config{$dir}{DEFAULT}} };
1409 elsif (/^(\w+)\s*=\s*(.*)/) {
1414 while (@lines && $lines[0]=~/^\s(.+)/) {
1421 # Untrusted files can only contain a few
1422 # settings in specific known-safe formats.
1423 if ($parameter eq 'checkout') {
1424 if (! is_trusted_checkout($value)) {
1425 $trusterror->("illegal checkout command \"$value\"");
1428 elsif ($parameter eq 'order') {
1429 # not interpreted as a command, so
1432 elsif ($value eq 'true' || $value eq 'false') {
1433 # skip=true , deleted=true etc are
1437 $trusterror->("illegal setting \"$parameter=$value\"");
1441 if ($parameter eq "include") {
1442 print "mr: including output of \"$value\"\n" if $verbose;
1445 print STDERR "mr: include command exited nonzero ($?)\n";
1448 unshift @lines, @inc;
1452 if (! defined $section) {
1453 $lineerror->("parameter ($parameter) not in section");
1455 if ($section eq 'ALIAS') {
1456 $alias{$parameter}=$value;
1458 elsif ($parameter eq 'lib' or $parameter =~ s/_append$//) {
1459 $config{$dir}{$section}{$parameter}.="\n".$value."\n";
1462 $config{$dir}{$section}{$parameter}=$value;
1463 if ($parameter =~ /.*_(.*)/) {
1464 $knownactions{$1}=1;
1467 $knownactions{$parameter}=1;
1469 if ($parameter eq 'chain' &&
1470 length $dir && $section ne "DEFAULT") {
1471 my $chaindir="$section";
1472 if ($chaindir !~ m!^/!) {
1473 $chaindir=$dir.$chaindir;
1475 if (-e "$chaindir/.mrconfig") {
1476 my $ret=system($value);
1478 if (($? & 127) == 2) {
1479 print STDERR "mr: chain test interrupted\n";
1483 print STDERR "mr: chain test received signal ".($? & 127)."\n";
1487 push @toload, ["$chaindir/.mrconfig", $chaindir];
1494 $lineerror->("parse error");
1498 foreach my $c (@toload) {
1503 sub startingconfig {
1504 %alias=%config=%configfiles=%knownactions=%loaded=();
1505 my $datapos=tell(DATA);
1507 seek(DATA,$datapos,0); # rewind
1512 # the section to modify or add
1513 my $targetsection=shift;
1514 # fields to change in the section
1515 # To remove a field, set its value to "".
1516 my %changefields=@_;
1522 open(my $in, "<", $f) || die "mr: open $f: $!\n";
1527 my $formatfield=sub {
1529 my @value=split(/\n/, shift);
1531 return "$field = ".shift(@value)."\n".
1532 join("", map { "\t$_\n" } @value);
1536 while ($out[$#out] =~ /^\s*$/) {
1537 unshift @blanks, pop @out;
1539 foreach my $field (sort keys %changefields) {
1540 if (length $changefields{$field}) {
1541 push @out, "$field = $changefields{$field}\n";
1542 delete $changefields{$field};
1552 if (/^\s*\#/ || /^\s*$/) {
1555 elsif (/^\[([^\]]*)\]\s*$/) {
1556 if (defined $section &&
1557 $section eq $targetsection) {
1561 $section=expandenv($1);
1565 elsif (/^(\w+)\s*=\s(.*)/) {
1570 while (@lines && $lines[0]=~/^\s(.+)/) {
1576 if ($section eq $targetsection) {
1577 if (exists $changefields{$parameter}) {
1578 if (length $changefields{$parameter}) {
1579 $value=$changefields{$parameter};
1581 delete $changefields{$parameter};
1585 push @out, $formatfield->($parameter, $value);
1589 if (defined $section &&
1590 $section eq $targetsection) {
1593 elsif (%changefields) {
1594 push @out, "\n[$targetsection]\n";
1595 foreach my $field (sort keys %changefields) {
1596 if (length $changefields{$field}) {
1597 push @out, $formatfield->($field, $changefields{$field});
1602 open(my $out, ">", $f) || die "mr: write $f: $!\n";
1610 # actions that do not operate on all repos
1611 if ($action eq 'config') {
1614 elsif ($action eq 'register') {
1617 elsif ($action eq 'bootstrap') {
1620 elsif ($action eq 'remember' ||
1621 $action eq 'offline' ||
1622 $action eq 'online') {
1623 my @repos=selectrepos;
1624 action($action, @{$repos[0]}) if @repos;
1628 if (!$jobs || $jobs > 1) {
1629 mrs($action, selectrepos());
1632 foreach my $repo (selectrepos()) {
1633 record($repo, action($action, @$repo));
1642 SHOWMANFILE="man -f"
1651 if [ ! -e "$MR_PATH" ]; then
1652 error "cannot find program path"
1654 tmp=$(mktemp -t mr.XXXXXXXXXX) || error "mktemp failed"
1655 trap "rm -f $tmp" exit
1656 pod2man -c mr "$MR_PATH" > "$tmp" || error "pod2man failed"
1657 $SHOWMANFILE "$tmp" || error "man failed"
1659 exec($help) || die "exec: $!";
1664 die "mr config: not enough parameters\n";
1667 if ($section=~/^\//) {
1668 # try to convert to a path relative to the config file
1669 my ($dir)=$ENV{MR_CONFIG}=~/^(.*\/)[^\/]+$/;
1670 $dir=abs_path($dir);
1671 $dir.="/" unless $dir=~/\/$/;
1672 if ($section=~/^\Q$dir\E(.*)/) {
1678 if (/^([^=]+)=(.*)$/) {
1679 $changefields{$1}=$2;
1683 foreach my $topdir (sort keys %config) {
1684 if (exists $config{$topdir}{$section} &&
1685 exists $config{$topdir}{$section}{$_}) {
1686 print $config{$topdir}{$section}{$_}."\n";
1688 last if $section eq 'DEFAULT';
1692 die "mr config: $section $_ not set\n";
1696 modifyconfig($ENV{MR_CONFIG}, $section, %changefields) if %changefields;
1701 if ($config_overridden) {
1702 # Find the directory that the specified config file is
1704 ($directory)=abs_path($ENV{MR_CONFIG})=~/^(.*\/)[^\/]+$/;
1707 # Find the closest known mrconfig file to the current
1709 $directory.="/" unless $directory=~/\/$/;
1711 foreach my $topdir (reverse sort keys %config) {
1712 next unless length $topdir;
1713 if ($directory=~/^\Q$topdir\E/) {
1714 $ENV{MR_CONFIG}=$configfiles{$topdir};
1720 if (! $foundconfig) {
1721 $directory=""; # no config file, use builtin
1725 my $subdir=shift @ARGV;
1726 if (! chdir($subdir)) {
1727 print STDERR "mr register: failed to chdir to $subdir: $!\n";
1731 $ENV{MR_REPO}=getcwd();
1732 my $command=findcommand("register", $ENV{MR_REPO}, $directory, 'DEFAULT', 0);
1733 if (! defined $command) {
1734 die "mr register: unknown repository type\n";
1737 $ENV{MR_REPO}=~s/.*\/(.*)/$1/;
1738 $command="set -e; ".$config{$directory}{DEFAULT}{lib}."\n".
1739 "my_action(){ $command\n }; my_action ".
1740 join(" ", map { s/\\/\\\\/g; s/"/\"/g; '"'.$_.'"' } @ARGV);
1741 print "mr register: running >>$command<<\n" if $verbose;
1742 exec($command) || die "exec: $!";
1746 eval q{use File::Copy};
1749 my $src=shift @ARGV;
1750 my $dir=shift @ARGV || ".";
1752 if (! defined $src || ! length $src) {
1753 die "mr: bootstrap requires source\n";
1756 # Retrieve config file.
1757 eval q{use File::Temp};
1759 my $tmpconfig=File::Temp->new();
1760 if ($src =~ m!^[\w\d]+://!) {
1761 # Download the config file to a temporary location.
1763 if ($src =~ m!^ssh://(.*)!) {
1764 @downloader = ("scp", $1, $tmpconfig);
1767 @downloader = ("curl", "-A", "mr", "-L", "-s", $src, "-o", $tmpconfig);
1768 push(@downloader, "-k") if $insecure;
1770 my $status = system(@downloader);
1771 die "mr bootstrap: invalid SSL certificate for $src (consider -k)\n"
1772 if $downloader[0] eq 'curl' && $status >> 8 == 60;
1773 die "mr bootstrap: download of $src failed\n" if $status != 0;
1775 elsif ($src eq '-') {
1776 # Config file is read from stdin.
1777 copy(\*STDIN, $tmpconfig) || die "stdin: $!";
1780 # Config file is local.
1781 die "mr bootstrap: cannot read file '$src'"
1783 copy($src, $tmpconfig) || die "copy: $!";
1786 # Sanity check on destination directory.
1788 system("mkdir", "-p", $dir);
1790 chdir($dir) || die "chdir $dir: $!";
1792 # Special case to handle checkout of the "." repo, which
1793 # would normally be skipped.
1794 my $topdir=abs_path(".")."/";
1795 my @repo=($topdir, $topdir, ".");
1796 loadconfig($tmpconfig, $topdir, $src);
1797 record(\@repo, action("checkout", @repo, 1))
1798 if exists $config{$topdir}{"."}{"checkout"};
1800 if (-e ".mrconfig") {
1801 print STDERR "mr bootstrap: .mrconfig file already exists, not overwriting with $src\n";
1804 move($tmpconfig, ".mrconfig") || die "rename: $!";
1807 # Reload the config file (in case we got a different version)
1808 # and checkout everything else.
1810 loadconfig(".mrconfig");
1811 dispatch("checkout");
1812 @skipped=grep { abs_path($_) ne abs_path($topdir) } @skipped;
1813 showstats("bootstrap");
1817 # alias expansion and command stemming
1820 if (exists $alias{$action}) {
1821 $action=$alias{$action};
1823 if (! exists $knownactions{$action}) {
1824 my @matches = grep { /^\Q$action\E/ }
1825 keys %knownactions, keys %alias;
1826 if (@matches == 1) {
1827 $action=$matches[0];
1829 elsif (@matches == 0) {
1830 die "mr: unknown action \"$action\" (known actions: ".
1831 join(", ", sort keys %knownactions).")\n";
1834 die "mr: ambiguous action \"$action\" (matches: ".
1835 join(", ", @matches).")\n";
1843 while (length $dir) {
1844 if (-e "$dir/.mrconfig") {
1845 return "$dir/.mrconfig";
1847 $dir=~s/\/[^\/]*$//;
1849 return $HOME_MR_CONFIG;
1854 Getopt::Long::Configure("bundling", "no_permute");
1855 my $result=GetOptions(
1856 "d|directory=s" => sub { $directory=abs_path($_[1]) },
1857 "c|config=s" => sub { $ENV{MR_CONFIG}=$_[1]; $config_overridden=1 },
1858 "p|path" => sub { }, # now default, ignore
1859 "f|force" => \$force,
1860 "v|verbose" => \$verbose,
1861 "m|minimal" => \$minimal,
1862 "q|quiet" => \$quiet,
1863 "s|stats" => \$stats,
1864 "k|insecure" => \$insecure,
1865 "i|interactive" => \$interactive,
1866 "n|no-recurse:i" => \$max_depth,
1867 "j|jobs:i" => \$jobs,
1868 "t|trust-all" => \$trust_all,
1870 if (! $result || @ARGV < 1) {
1871 die("Usage: mr [options] action [params ...]\n".
1872 "(Use mr help for man page.)\n");
1875 $ENV{MR_SWITCHES}="";
1876 foreach my $option (@saved) {
1877 last if $option eq $ARGV[0];
1878 $ENV{MR_SWITCHES}.="$option ";
1883 my @env = qw(GIT_DIR VCSH_COMMAND);
1885 die ("mr: environment variable '$_' is set. You are about to shoot your own foot.\n") if ($ENV{$_});
1891 print STDERR "mr: interrupted\n";
1895 # This can happen if it's run in a directory that was removed
1896 # or other strangeness.
1897 if (! defined $directory) {
1898 die("mr: failed to determine working directory\n");
1900 # Make sure MR_CONFIG is an absolute path, but don't use abs_path since
1901 # the config file might be a symlink to elsewhere, and the directory it's
1902 # in is significant.
1903 if ($ENV{MR_CONFIG} !~ /^\//) {
1904 $ENV{MR_CONFIG}=getcwd()."/".$ENV{MR_CONFIG};
1906 # Try to set MR_PATH to the path to the program.
1908 use FindBin qw($Bin $Script);
1909 $ENV{MR_PATH}=$Bin."/".$Script;
1926 help(@ARGV) if $ARGV[0] eq 'help';
1929 loadconfig($HOME_MR_CONFIG);
1930 loadconfig($ENV{MR_CONFIG});
1931 #use Data::Dumper; print Dumper(\%config);
1933 my $action=expandaction(shift @ARGV);
1940 # Finally, some useful actions that mr knows about by default.
1941 # These can be overridden in ~/.mrconfig.
1956 echo "mr (warning): $@" >&2
1962 if [ -z "$1" ] || [ -z "$2" ]; then
1963 error "mr: usage: hours_since action num"
1965 for dir in .git .svn .bzr CVS .hg _darcs _FOSSIL_; do
1966 if [ -e "$MR_REPO/$dir" ]; then
1967 flagfile="$MR_REPO/$dir/.mr_last$1"
1971 if [ -z "$flagfile" ]; then
1972 error "cannot determine flag filename"
1974 delta=`perl -wle 'print -f shift() ? int((-M _) * 24) : 9999' "$flagfile"`
1975 if [ "$delta" -lt "$2" ]; then
1983 LANG=C bzr info | egrep -q '^Checkout'
1986 if [ -d "$MR_REPO" ]; then
1993 svn_test = perl: -d "$ENV{MR_REPO}/.svn"
1994 git_test = perl: -e "$ENV{MR_REPO}/.git"
1995 bzr_test = perl: -d "$ENV{MR_REPO}/.bzr"
1996 cvs_test = perl: -d "$ENV{MR_REPO}/CVS"
1997 hg_test = perl: -d "$ENV{MR_REPO}/.hg"
1998 darcs_test = perl: -d "$ENV{MR_REPO}/_darcs"
1999 fossil_test = perl: -f "$ENV{MR_REPO}/_FOSSIL_"
2000 git_bare_test = perl:
2001 -d "$ENV{MR_REPO}/refs/heads" && -d "$ENV{MR_REPO}/refs/tags" &&
2002 -d "$ENV{MR_REPO}/objects" && -f "$ENV{MR_REPO}/config" &&
2003 `GIT_CONFIG="$ENV{MR_REPO}"/config git config --get core.bare` =~ /true/
2005 -d "$ENV{MR_REPO}/refs/heads" && -d "$ENV{MR_REPO}/refs/tags" &&
2006 -d "$ENV{MR_REPO}/objects" && -f "$ENV{MR_REPO}/config" &&
2007 `GIT_CONFIG="$ENV{MR_REPO}"/config git config --get vcsh.vcsh` =~ /true/
2008 veracity_test = perl: -d "$ENV{MR_REPO}/.sgdrawer"
2010 svn_update = svn update "$@"
2011 git_update = git pull "$@"
2013 if is_bzr_checkout; then
2016 bzr merge --pull "$@"
2018 cvs_update = cvs -q update "$@"
2019 hg_update = hg pull "$@"; hg update "$@"
2020 darcs_update = darcs pull -a "$@"
2021 fossil_update = fossil pull "$@"
2022 vcsh_update = vcsh run "$MR_REPO" git pull "$@"
2023 veracity_update = vv pull "$@" && vv update "$@"
2025 git_fetch = git fetch --all --prune --tags
2026 git_svn_fetch = git svn fetch
2027 darcs_fetch = darcs fetch
2031 if [ "x$1" = x-f ] ; then
2035 svn-clean --print "$@"
2038 if [ "x$1" = x-f ] ; then
2040 git clean -dx --force "$@"
2042 git clean -dx --dry-run "$@"
2045 if [ "x$1" = x-f ] ; then
2047 git clean -dx --force "$@"
2049 git clean -dx --dry-run "$@"
2052 if [ "x$1" = x-f ] ; then
2054 bzr clean-tree --verbose --force --ignored --unknown --detritus "$@"
2056 bzr clean-tree --verbose --dry-run --ignored --unknown --detritus "$@"
2059 if [ "x$1" = x-f ] ; then
2063 cvs-clean --dry-run "$@"
2066 if [ "x$1" = x-f ] ; then
2068 hg purge --print --all "$@"
2071 hg purge --print --all "$@"
2074 if [ "x$1" = x-f ] ; then
2076 fossil clean --dry-run --dotfiles --emptydirs "$@"
2078 fossil clean --force --dotfiles --emptydirs "$@"
2081 if [ "x$1" = x-f ] ; then
2083 vcsh run "$MR_REPO" git clean -dx "$@"
2085 vcsh run "$MR_REPO" git clean -dx --dry-run "$@"
2088 svn_status = svn status "$@"
2089 git_status = git status -s "$@" || true; git --no-pager log --branches --not --remotes --simplify-by-decoration --decorate --oneline || true
2090 bzr_status = bzr status --short "$@"; bzr missing
2091 cvs_status = cvs -q status | grep -E '^(File:.*Status:|\?)' | grep -v 'Status: Up-to-date'
2092 hg_status = hg status "$@"; hg summary --quiet | grep -v 'parent: 0:'
2093 darcs_status = darcs whatsnew -ls "$@" || true
2094 fossil_status = fossil changes "$@"
2095 vcsh_status = vcsh run "$MR_REPO" git -c status.relativePaths=false status -s "$@" || true
2096 veracity_status = vv status "$@"
2098 svn_commit = svn commit "$@"
2099 git_commit = git commit -a "$@" && git push --all
2101 if is_bzr_checkout; then
2104 bzr commit "$@" && bzr push
2106 cvs_commit = cvs commit "$@"
2107 hg_commit = hg commit "$@" && hg push
2108 darcs_commit = darcs record -a "$@" && darcs push -a
2109 fossil_commit = fossil commit "$@"
2110 vcsh_commit = vcsh run "$MR_REPO" git commit -a "$@" && vcsh run "$MR_REPO" git push --all
2111 veracity_commit = vv commit "$@" && vv push
2113 git_record = git commit -a "$@"
2115 if is_bzr_checkout; then
2116 bzr commit --local "$@"
2120 hg_record = hg commit "$@"
2121 darcs_record = darcs record -a "$@"
2122 fossil_record = fossil commit "$@"
2123 vcsh_record = vcsh run "$MR_REPO" git commit -a "$@"
2124 veracity_record = vv commit "$@"
2127 git_push = git push "$@"
2128 bzr_push = bzr push "$@"
2130 hg_push = hg push "$@"
2131 darcs_push = darcs push -a "$@"
2132 fossil_push = fossil push "$@"
2133 vcsh_push = vcsh run "$MR_REPO" git push "$@"
2134 veracity_push = vv push "$@"
2136 svn_diff = svn diff "$@"
2137 git_diff = git diff "$@"
2138 bzr_diff = bzr diff "$@"
2139 cvs_diff = cvs -q diff "$@"
2140 hg_diff = hg diff "$@"
2141 darcs_diff = darcs diff -u "$@"
2142 fossil_diff = fossil diff "$@"
2143 vcsh_diff = vcsh run "$MR_REPO" git diff "$@"
2144 veracity_diff = vv diff "$@"
2146 svn_log = svn log "$@"
2147 git_log = git log "$@"
2148 bzr_log = bzr log "$@"
2149 cvs_log = cvs log "$@"
2150 hg_log = hg log "$@"
2151 darcs_log = darcs changes "$@"
2152 git_bare_log = git log "$@"
2153 fossil_log = fossil timeline "$@"
2154 vcsh_log = vcsh run "$MR_REPO" git log "$@"
2155 veracity_log = vv log "$@"
2157 hg_grep = hg grep "$@"
2158 cvs_grep = ack-grep "$@"
2159 svn_grep = ack-grep "$@"
2160 git_svn_grep = git grep "$@"
2161 git_grep = git grep "$@"
2162 bzr_grep = ack-grep "$@"
2163 darcs_grep = ack-grep "$@"
2168 url=`LC_ALL=C svn info . | grep -i '^URL:' | cut -d ' ' -f 2`
2169 if [ -z "$url" ]; then
2170 error "cannot determine svn url"
2172 echo "Registering svn url: $url in $MR_CONFIG"
2173 mr -c "$MR_CONFIG" config "`pwd`" checkout="svn co '$url' '$MR_REPO'"
2175 url="`LC_ALL=C git config --get remote.origin.url`" || true
2176 if [ -z "$url" ]; then
2177 error "cannot determine git url"
2179 echo "Registering git url: $url in $MR_CONFIG"
2180 mr -c "$MR_CONFIG" config "`pwd`" checkout="git clone '$url' '$MR_REPO'"
2182 url="`LC_ALL=C bzr info . | egrep -i 'checkout of branch|parent branch' | awk '{print $NF}' | head -n 1`"
2183 if [ -z "$url" ]; then
2184 error "cannot determine bzr url"
2186 echo "Registering bzr url: $url in $MR_CONFIG"
2187 mr -c "$MR_CONFIG" config "`pwd`" checkout="bzr branch '$url' '$MR_REPO'"
2189 repo=`cat CVS/Repository`
2191 if [ -z "$root" ]; then
2192 error "cannot determine cvs root"
2194 echo "Registering cvs repository $repo at root $root"
2195 mr -c "$MR_CONFIG" config "`pwd`" checkout="cvs -d '$root' co -d '$MR_REPO' '$repo'"
2197 url=`hg showconfig paths.default`
2198 echo "Registering mercurial repo url: $url in $MR_CONFIG"
2199 mr -c "$MR_CONFIG" config "`pwd`" checkout="hg clone '$url' '$MR_REPO'"
2201 url=`cat _darcs/prefs/defaultrepo`
2202 echo "Registering darcs repository $url in $MR_CONFIG"
2203 mr -c "$MR_CONFIG" config "`pwd`" checkout="darcs get '$url' '$MR_REPO'"
2205 url="`LC_ALL=C GIT_CONFIG=config git config --get remote.origin.url`" || true
2206 if [ -z "$url" ]; then
2207 error "cannot determine git url"
2209 echo "Registering git url: $url in $MR_CONFIG"
2210 mr -c "$MR_CONFIG" config "`pwd`" checkout="git clone --bare '$url' '$MR_REPO'"
2212 url="`LC_ALL=C vcsh run "$MR_REPO" git config --get remote.origin.url`" || true
2213 if [ -z "$url" ]; then
2214 error "cannot determine git url"
2216 echo "Registering git url: $url in $MR_CONFIG"
2217 mr -c "$MR_CONFIG" config "`pwd`" checkout="vcsh clone '$url' '$MR_REPO'"
2219 url=`fossil remote-url`
2220 repo=`fossil info | grep repository | sed -e 's/repository:*.//g' -e 's/ //g'`
2221 echo "Registering fossil repository $url in $MR_CONFIG"
2222 mr -c "$MR_CONFIG" config "`pwd`" checkout="mkdir -p '$MR_REPO' && cd '$MR_REPO' && fossil open '$repo'"
2224 url=`vv config | grep sync_targets | sed -e 's/sync_targets:*.//g' -e 's/ //g'`
2225 repo=`vv repo info | grep repository | sed -e 's/Current repository:*.//g' -e 's/ //g'`
2226 echo "Registering veracity repository $url in $MR_CONFIG"
2227 mr -c "$MR_CONFIG" config "`pwd`" checkout="mkdir -p '$MR_REPO' && cd '$MR_REPO' && vv checkout '$repo'"
2229 svn_trusted_checkout = svn co $url $repo
2230 svn_alt_trusted_checkout = svn checkout $url $repo
2231 git_trusted_checkout = git clone $url $repo
2232 bzr_trusted_checkout = bzr checkout|clone|branch|get $url $repo
2234 hg_trusted_checkout = hg clone $url $repo
2235 darcs_trusted_checkout = darcs get $url $repo
2236 git_bare_trusted_checkout = git clone --bare $url $repo
2237 vcsh_old_trusted_checkout = vcsh run "$MR_REPO" git clone $url $repo
2238 vcsh_trusted_checkout = vcsh clone $url $repo
2239 # fossil: messy to do
2240 veracity_trusted_checkout = vv clone $url $repo
2248 if [ -s ~/.mrlog ]; then
2249 info "running offline commands"
2250 mv -f ~/.mrlog ~/.mrlog.old
2251 if ! sh -e ~/.mrlog.old; then
2252 error "offline command failed; left in ~/.mrlog.old"
2256 info "no offline commands to run"
2261 info "offline mode enabled"
2263 info "remembering command: 'mr $@'"
2264 command="mr -d '$(pwd)' $MR_SWITCHES"
2266 command="$command '$w'"
2268 if [ ! -e ~/.mrlog ] || ! grep -q -F "$command" ~/.mrlog; then
2269 echo "$command" >> ~/.mrlog
2272 ed = echo "A horse is a horse, of course, of course.."
2273 T = echo "I pity the fool."
2274 right = echo "Not found."
2276 # vim:sw=8:sts=0:ts=8:noet
2278 # indent-tabs-mode: t
2279 # cperl-indent-level: 8