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.
7 mr - a Multiple Repository management tool
11 B<mr> [options] checkout
13 B<mr> [options] update
15 B<mr> [options] status
17 B<mr> [options] commit [-m "message"]
23 B<mr> [options] register [repository]
25 B<mr> [options] config section ["parameter=[value]" ...]
27 B<mr> [options] action [params ...]
31 B<mr> is a Multiple Repository management tool. It can checkout, update, or
32 perform other actions on a set of repositories as if they were one combined
33 respository. It supports any combination of subversion, git, cvs, mecurial,
34 bzr and darcs repositories, and support for other revision control systems can
37 B<mr> cds into and operates on all registered repositories at or below your
38 working directory. Or, if you are in a subdirectory of a repository that
39 contains no other registered repositories, it will stay in that directory,
40 and work on only that repository,
42 These predefined commands should be fairly familiar to users of any revision
47 =item checkout (or co)
49 Checks out any repositories that are not already checked out.
53 Updates each repository from its configured remote repository.
55 If a repository isn't checked out yet, it will first check it out.
59 Displays a status report for each repository, showing what
60 uncommitted changes are present in the repository.
64 Commits changes to each repository. (By default, changes are pushed to the
65 remote repository too, when using distributed systems like git.)
67 The optional -m parameter allows specifying a commit message.
71 Show a diff of uncommitted changes.
79 These commands are also available:
85 List the repositories that mr will act on.
89 Register an existing repository in a mrconfig file. By default, the
90 repository in the current directory is registered, or you can specify a
91 directory to register.
93 The mrconfig file that is modified is chosen by either the -c option, or by
94 looking for the closest known one at or below the current directory.
98 Adds, modifies, removes, or prints a value from a mrconfig file. The next
99 parameter is the name of the section the value is in. To add or modify
100 values, use one or more instances of "parameter=value". Use "parameter=" to
101 remove a parameter. Use just "parameter" to get the value of a parameter.
103 For example, to add (or edit) a repository in src/foo:
105 mr config src/foo checkout="svn co svn://example.com/foo/trunk foo"
107 To show the command that mr uses to update the repository in src/foo:
109 mr config src/foo update
111 To see the built-in library of shell functions contained in mr:
113 mr config DEFAULT lib
115 The ~/.mrconfig file is used by default. To use a different config file,
124 Actions can be abbreviated to any unambiguous subsctring, so
125 "mr st" is equivilant to "mr status", and "mr up" is equivilant to "mr
128 Additional parameters can be passed to most commands, and are passed on
129 unchanged to the underlying revision control system. This is mostly useful
130 if the repositories mr will act on all use the same revision control
139 Specifies the topmost directory that B<mr> should work in. The default is
140 the current working directory.
144 Use the specified mrconfig file. The default is B<~/.mrconfig>
152 Expand the statistics line displayed at the end to include information
153 about exactly which repositories failed and were skipped, if any.
157 Just operate on the repository for the current directory, do not
158 recurse into deeper repositories.
162 Run the specified number of jobs in parallel. This can greatly speed up
163 operations such as updates. It is not recommended for interactive
170 B<mr> is configured by .mrconfig files. It starts by reading the .mrconfig
171 file in your home directory, and this can in turn chain load .mrconfig files
174 Here is an example .mrconfig file:
177 checkout = svn co svn://svn.example.com/src/trunk src
181 checkout = git clone git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6.git &&
183 git checkout -b mybranch origin/master
185 The .mrconfig file uses a variant of the INI file format. Lines starting with
186 "#" are comments. Values can be continued to the following line by
187 indenting the line with whitespace.
189 The "DEFAULT" section allows setting default values for the sections that
192 The "ALIAS" section allows adding aliases for actions. Each parameter
193 is an alias, and its value is the action to use.
195 All other sections add repositories. The section header specifies the
196 directory where the repository is located. This is relative to the directory
197 that contains the mrconfig file, but you can also choose to use absolute
200 Within a section, each parameter defines a shell command to run to handle a
201 given action. mr contains default handlers for "update", "status",
202 "commit", and other standard actions. Normally you only need to specify what
203 to do for "checkout".
205 Note that these shell commands are run in a "set -e" shell
206 environment, where any additional parameters you pass are available in
207 "$@". The "checkout" command is run in the parent of the repository
208 directory, since the repository isn't checked out yet. All other commands
209 are run inside the repository, though not necessarily at the top of it.
211 The "MR_REPO" environment variable is set to the path to the top of the
212 repository. (For the "register" action, "MR_REPO" is instead set to the
213 basename of the directory that should be created when checking the
216 The "MR_CONFIG" environment variable is set to the .mrconfig file
217 that defines the repo being acted on, or, if the repo is not yet in a config
218 file, the .mrconfig file that should be modified to register the repo.
220 A few parameters have special meanings:
226 If the "skip" parameter is set and its command returns true, then B<mr>
227 will skip acting on that repository. The command is passed the action
230 Here are two examples. The first skips the repo unless
231 mr is run by joey. The second uses the hours_since function
232 (included in mr's built-in library) to skip updating the repo unless it's
233 been at least 12 hours since the last update.
235 skip = test $(whoami) != joey
236 skip = [ "$1" = update ] && ! hours_since "$1" 12
240 The "order" parameter can be used to override the default ordering of
241 repositories. The default order value is 10. Use smaller values to make
242 repositories be processed earlier, and larger values to make repositories
245 Note that if a repository is located in a subdirectory of another
246 repository, ordering it to be processed earlier is not recommended.
250 If the "chain" parameter is set and its command returns true, then B<mr>
251 will try to load a .mrconfig file from the root of the repository. (You
252 should avoid chaining from repositories with untrusted committers.)
256 If the "include" parameter is set, its command is ran, and should output
257 additional mrconfig file content. The content is included as if it were
258 part of the including file.
260 Unlike all other parameters, this parameter does not need to be placed
265 The "lib" parameter can specify some shell code that will be run before each
266 command, this can be a useful way to define shell functions for other commands
271 When looking for a command to run for a given action, mr first looks for
272 a parameter with the same name as the action. If that is not found, it
273 looks for a parameter named "rcs_action" (substituting in the name of the
274 revision control system and the action). The name of the revision control
275 system is itself determined by running each defined "rcs_test" action,
278 Internally, mr has settings for "git_update", "svn_update", etc. To change
279 the action that is performed for a given revision control system, you can
280 override these rcs specific actions. To add a new revision control system,
281 you can just add rcs specific actions for it.
285 Copyright 2007 Joey Hess <joey@kitenet.net>
287 Licensed under the GNU GPL version 2 or higher.
289 http://kitenet.net/~joey/code/mr/
298 use Cwd qw(getcwd abs_path);
308 print STDERR "mr: interrupted\n";
312 $ENV{MR_CONFIG}="$ENV{HOME}/.mrconfig";
313 my $config_overridden=0;
323 my $directory=getcwd();
327 # This can happen if it's run in a directory that was removed
328 # or other strangeness.
329 if (! defined $directory) {
330 die("mr: failed to determine working directory\n");
332 # Make sure MR_CONFIG is an absolute path, but don't use abs_path since
333 # the config file might be a symlink to elsewhere, and the directory it's
335 if ($ENV{MR_CONFIG} !~ /^\//) {
336 $ENV{MR_CONFIG}=getcwd()."/".$ENV{MR_CONFIG};
338 # Try to set MR_PATH to the path to the program.
340 use FindBin qw($Bin $Script);
341 $ENV{MR_PATH}=$Bin."/".$Script;
345 loadconfig($ENV{MR_CONFIG});
347 #print Dumper(\%config);
349 my $action=expandaction(shift @ARGV);
351 # actions that do not operate on all repos
352 if ($action eq 'help') {
355 elsif ($action eq 'config') {
358 elsif ($action eq 'register') {
362 my (@ok, @failed, @skipped);
367 foreach my $repo (selectrepos()) {
368 record($repo, action($action, @$repo));
377 elsif (! @ok && @skipped) {
383 my ($action, $dir, $topdir, $subdir) = @_;
386 foreach my $rcs_test (
388 length $a <=> length $b
391 } grep { /_test$/ } keys %{$config{$topdir}{$subdir}}) {
392 my ($rcs)=$rcs_test=~/(.*)_test/;
393 $test="my_$rcs_test() {\n$config{$topdir}{$subdir}{$rcs_test}\n}\n".$test;
394 $test.="if my_$rcs_test; then echo $rcs; fi\n";
396 $test=$config{$topdir}{$subdir}{lib}."\n".$test
397 if exists $config{$topdir}{$subdir}{lib};
399 print "mr $action: running rcs test >>$test<<\n" if $verbose;
410 sub findcommand { #{{{
411 my ($action, $dir, $topdir, $subdir) = @_;
413 if (exists $config{$topdir}{$subdir}{$action}) {
414 return $config{$topdir}{$subdir}{$action};
417 my $rcs=rcs_test(@_);
420 exists $config{$topdir}{$subdir}{$rcs."_".$action}) {
421 return $config{$topdir}{$subdir}{$rcs."_".$action};
429 my ($action, $dir, $topdir, $subdir) = @_;
431 $ENV{MR_CONFIG}=$configfiles{$topdir};
432 my $lib=exists $config{$topdir}{$subdir}{lib} ?
433 $config{$topdir}{$subdir}{lib}."\n" : "";
435 if ($action eq 'checkout') {
437 print "mr $action: $dir already exists, skipping checkout\n" if $verbose;
441 $dir=~s/^(.*)\/[^\/]+\/?$/$1/;
444 print "mr $action: creating parent directory $dir\n" if $verbose;
445 system("mkdir", "-p", $dir);
448 elsif ($action =~ /update/) {
450 return action("checkout", $dir, $topdir, $subdir);
456 my $skiptest=findcommand("skip", $dir, $topdir, $subdir);
457 my $command=findcommand($action, $dir, $topdir, $subdir);
459 if (defined $skiptest) {
460 my $test="set -e;".$lib.
461 "my_action(){ $skiptest\n }; my_action '$action'";
462 print "mr $action: running skip test >>$test<<\n" if $verbose;
463 my $ret=system($test);
465 if (($? & 127) == 2) {
466 print STDERR "mr $action: interrupted\n";
470 print STDERR "mr $action: skip test received signal ".($? & 127)."\n";
474 if ($ret >> 8 == 0) {
475 print "mr $action: $dir skipped per config file\n" if $verbose;
480 if (! $no_chdir && ! chdir($dir)) {
481 print STDERR "mr $action: failed to chdir to $dir: $!\n";
484 elsif (! defined $command) {
485 my $rcs=rcs_test(@_);
486 if (! defined $rcs) {
487 print STDERR "mr $action: unknown repository type and no defined $action command for $topdir$subdir\n";
491 print STDERR "mr $action: no defined $action command for $rcs repository $topdir$subdir, skipping\n";
497 print "mr $action: $topdir$subdir\n";
501 $s=~s/^\Q$topdir$subdir\E\/?//;
502 print "mr $action: $topdir$subdir (in subdir $s)\n";
504 $command="set -e; ".$lib.
505 "my_action(){ $command\n }; my_action ".
506 join(" ", map { s/\//\/\//g; s/"/\"/g; '"'.$_.'"' } @ARGV);
507 print "mr $action: running >>$command<<\n" if $verbose;
508 my $ret=system($command);
510 if (($? & 127) == 2) {
511 print STDERR "mr $action: interrupted\n";
515 print STDERR "mr $action: received signal ".($? & 127)."\n";
518 print STDERR "mr $action: failed ($ret)\n" if $verbose;
519 if ($ret >> 8 != 0) {
520 print STDERR "mr $action: command failed\n";
523 print STDERR "mr $action: command died ($ret)\n";
528 if ($action eq 'checkout' && ! -d $dir) {
529 print STDERR "mr $action: $dir missing after checkout\n";;
538 # run actions on multiple repos, in parallel
547 while (@fhs or @repos) {
548 while ($running < $jobs && @repos) {
550 my $repo = shift @repos;
551 pipe(my $outfh, CHILD_STDOUT);
552 pipe(my $errfh, CHILD_STDERR);
554 unless ($pid = fork) {
555 die "mr $action: cannot fork: $!" unless defined $pid;
556 open(STDOUT, ">&CHILD_STDOUT") || die "mr $action cannot reopen stdout: $!";
557 open(STDERR, ">&CHILD_STDERR") || die "mr $action cannot reopen stderr: $!";
562 exit action($action, @$repo);
566 push @active, [$pid, $repo];
567 push @fhs, [$outfh, $errfh];
570 my ($rin, $rout) = ('','');
572 foreach my $fh (@fhs) {
573 next unless defined $fh;
574 vec($rin, fileno($fh->[0]), 1) = 1 if defined $fh->[0];
575 vec($rin, fileno($fh->[1]), 1) = 1 if defined $fh->[1];
577 $nfound = select($rout=$rin, undef, undef, 1);
578 foreach my $channel (0, 1) {
579 foreach my $i (0..$#fhs) {
580 next unless defined $fhs[$i];
581 my $fh = $fhs[$i][$channel];
582 next unless defined $fh;
583 if (vec($rout, fileno($fh), 1) == 1) {
585 if (sysread($fh, $r, 1024) == 0) {
587 $fhs[$i][$channel] = undef;
588 if (! defined $fhs[$i][0] &&
589 ! defined $fhs[$i][1]) {
590 waitpid($active[$i][0], 0);
591 print STDOUT $out[$i][0];
592 print STDERR $out[$i][1];
593 record($active[$i][1], $? >> 8);
595 splice(@active, $i, 1);
600 $out[$i][$channel] .= $r;
608 my $dir=shift()->[0];
615 elsif ($ret == FAILED) {
619 elsif ($ret == SKIPPED) {
622 elsif ($ret == ABORT) {
626 die "unknown exit status $ret";
631 if (! @ok && ! @failed && ! @skipped) {
632 die "mr $action: no repositories found to work on\n";
634 print "mr $action: finished (".join("; ",
635 showstat($#ok+1, "ok", "ok"),
636 showstat($#failed+1, "failed", "failed"),
637 showstat($#skipped+1, "skipped", "skipped"),
641 print "mr $action: (skipped: ".join(" ", @skipped).")\n";
644 print STDERR "mr $action: (failed: ".join(" ", @failed).")\n";
654 return "$count ".($count > 1 ? $plural : $singular);
659 # an ordered list of repos
662 foreach my $topdir (sort keys %config) {
663 foreach my $subdir (sort keys %{$config{$topdir}}) {
667 order => $config{$topdir}{$subdir}{order},
672 $a->{order} <=> $b->{order}
674 $a->{topdir} cmp $b->{topdir}
676 $a->{subdir} cmp $b->{subdir}
680 # figure out which repos to act on
681 sub selectrepos { #{{{
683 foreach my $repo (repolist()) {
684 my $topdir=$repo->{topdir};
685 my $subdir=$repo->{subdir};
687 next if $subdir eq 'DEFAULT';
688 my $dir=($subdir =~/^\//) ? $subdir : $topdir.$subdir;
690 $dir.="/" unless $dir=~/\/$/;
691 $d.="/" unless $d=~/\/$/;
692 next if $no_recurse && $d ne $dir;
693 next if $dir ne $d && $dir !~ /^\Q$d\E/;
694 push @repos, [$dir, $topdir, $subdir];
697 # fallback to find a leaf repo
698 foreach my $repo (reverse repolist()) {
699 my $topdir=$repo->{topdir};
700 my $subdir=$repo->{subdir};
702 next if $subdir eq 'DEFAULT';
703 my $dir=($subdir =~/^\//) ? $subdir : $topdir.$subdir;
705 $dir.="/" unless $dir=~/\/$/;
706 $d.="/" unless $d=~/\/$/;
707 if ($d=~/^\Q$dir\E/) {
708 push @repos, [$dir, $topdir, $subdir];
718 sub loadconfig { #{{{
725 if (ref $f eq 'GLOB') {
734 my $absf=abs_path($f);
735 if ($loaded{$absf}) {
740 ($dir)=$f=~/^(.*\/)[^\/]+$/;
741 if (! defined $dir) {
744 $dir=abs_path($dir)."/";
746 if (! exists $configfiles{$dir}) {
747 $configfiles{$dir}=$f;
750 # copy in defaults from first parent
752 while ($parent=~s/^(.*\/)[^\/]+\/?$/$1/) {
753 if ($parent eq '/') {
756 if (exists $config{$parent} &&
757 exists $config{$parent}{DEFAULT}) {
758 $config{$dir}{DEFAULT}={ %{$config{$parent}{DEFAULT}} };
763 print "mr: loading config $f\n" if $verbose;
764 open($in, "<", $f) || die "mr: open $f: $!\n";
775 next if /^\s*\#/ || /^\s*$/;
776 if (/^\[([^\]]*)\]\s*$/) {
779 elsif (/^(\w+)\s*=\s*(.*)/) {
784 while (@lines && $lines[0]=~/^\s(.+)/) {
791 if ($parameter eq "include") {
792 print "mr: including output of \"$value\"\n" if $verbose;
793 unshift @lines, `$value`;
797 if (! defined $section) {
798 die "$f line $.: parameter ($parameter) not in section\n";
800 if ($section ne 'ALIAS' &&
801 ! exists $config{$dir}{$section} &&
802 exists $config{$dir}{DEFAULT}) {
804 $config{$dir}{$section}={ %{$config{$dir}{DEFAULT}} };
806 if ($section eq 'ALIAS') {
807 $alias{$parameter}=$value;
809 elsif ($parameter eq 'lib') {
810 $config{$dir}{$section}{lib}.=$value."\n";
813 $config{$dir}{$section}{$parameter}=$value;
814 if ($parameter =~ /.*_(.*)/) {
818 $knownactions{$parameter}=1;
820 if ($parameter eq 'chain' &&
821 length $dir && $section ne "DEFAULT" &&
822 -e $dir.$section."/.mrconfig") {
823 my $ret=system($value);
825 if (($? & 127) == 2) {
826 print STDERR "mr $action: chain test interrupted\n";
830 print STDERR "mr $action: chain test received signal ".($? & 127)."\n";
834 push @toload, $dir.$section."/.mrconfig";
840 die "$f line $line: parse error\n";
849 sub modifyconfig { #{{{
851 # the section to modify or add
852 my $targetsection=shift;
853 # fields to change in the section
854 # To remove a field, set its value to "".
861 open(my $in, "<", $f) || die "mr: open $f: $!\n";
866 my $formatfield=sub {
868 my @value=split(/\n/, shift);
870 return "$field = ".shift(@value)."\n".
871 join("", map { "\t$_\n" } @value);
875 while ($out[$#out] =~ /^\s*$/) {
876 unshift @blanks, pop @out;
878 foreach my $field (sort keys %changefields) {
879 if (length $changefields{$field}) {
880 push @out, "$field = $changefields{$field}\n";
881 delete $changefields{$field};
891 if (/^\s*\#/ || /^\s*$/) {
894 elsif (/^\[([^\]]*)\]\s*$/) {
895 if (defined $section &&
896 $section eq $targetsection) {
904 elsif (/^(\w+)\s*=\s(.*)/) {
909 while (@lines && $lines[0]=~/^\s(.+)/) {
915 if ($section eq $targetsection) {
916 if (exists $changefields{$parameter}) {
917 if (length $changefields{$parameter}) {
918 $value=$changefields{$parameter};
920 delete $changefields{$parameter};
924 push @out, $formatfield->($parameter, $value);
928 if (defined $section &&
929 $section eq $targetsection) {
932 elsif (%changefields) {
933 push @out, "\n[$targetsection]\n";
934 foreach my $field (sort keys %changefields) {
935 if (length $changefields{$field}) {
936 push @out, $formatfield->($field, $changefields{$field});
941 open(my $out, ">", $f) || die "mr: write $f: $!\n";
947 exec($config{''}{DEFAULT}{$action}) || die "exec: $!";
952 die "mr config: not enough parameters\n";
955 if ($section=~/^\//) {
956 # try to convert to a path relative to the config file
957 my ($dir)=$ENV{MR_CONFIG}=~/^(.*\/)[^\/]+$/;
959 $dir.="/" unless $dir=~/\/$/;
960 if ($section=~/^\Q$dir\E(.*)/) {
966 if (/^([^=]+)=(.*)$/) {
967 $changefields{$1}=$2;
971 foreach my $topdir (sort keys %config) {
972 if (exists $config{$topdir}{$section} &&
973 exists $config{$topdir}{$section}{$_}) {
974 print $config{$topdir}{$section}{$_}."\n";
976 last if $section eq 'DEFAULT';
980 die "mr $action: $section $_ not set\n";
984 modifyconfig($ENV{MR_CONFIG}, $section, %changefields) if %changefields;
989 if (! $config_overridden) {
990 # Find the closest known mrconfig file to the current
992 $directory.="/" unless $directory=~/\/$/;
993 foreach my $topdir (reverse sort keys %config) {
994 next unless length $topdir;
995 if ($directory=~/^\Q$topdir\E/) {
996 $ENV{MR_CONFIG}=$configfiles{$topdir};
1003 my $subdir=shift @ARGV;
1004 if (! chdir($subdir)) {
1005 print STDERR "mr $action: failed to chdir to $subdir: $!\n";
1009 $ENV{MR_REPO}=getcwd();
1010 my $command=findcommand("register", $ENV{MR_REPO}, $directory, 'DEFAULT');
1011 if (! defined $command) {
1012 die "mr $action: unknown repository type\n";
1015 $ENV{MR_REPO}=~s/.*\/(.*)/$1/;
1016 $command="set -e; ".$config{$directory}{DEFAULT}{lib}."\n".
1017 "my_action(){ $command\n }; my_action ".
1018 join(" ", map { s/\//\/\//g; s/"/\"/g; '"'.$_.'"' } @ARGV);
1019 print "mr $action: running >>$command<<\n" if $verbose;
1020 exec($command) || die "exec: $!";
1023 # alias expansion and command stemming
1024 sub expandaction { #{{{
1026 if (exists $alias{$action}) {
1027 $action=$alias{$action};
1029 if (! exists $knownactions{$action}) {
1030 my @matches = grep { /^\Q$action\E/ }
1031 keys %knownactions, keys %alias;
1032 if (@matches == 1) {
1033 $action=$matches[0];
1035 elsif (@matches == 0) {
1036 die "mr: unknown action \"$action\" (known actions: ".
1037 join(", ", sort keys %knownactions).")\n";
1040 die "mr: ambiguous action \"$action\" (matches: ".
1041 join(", ", @matches).")\n";
1048 Getopt::Long::Configure("no_permute");
1049 my $result=GetOptions(
1050 "d|directory=s" => sub { $directory=abs_path($_[1]) },
1051 "c|config=s" => sub { $ENV{MR_CONFIG}=$_[1]; $config_overridden=1 },
1052 "v|verbose" => \$verbose,
1053 "s|stats" => \$stats,
1054 "n|no-recurse" => \$no_recurse,
1055 "j|jobs=i" => \$jobs,
1057 if (! $result || @ARGV < 1) {
1058 die("Usage: mr [-d directory] action [params ...]\n".
1059 "(Use mr help for man page.)\n");
1063 # Finally, some useful actions that mr knows about by default.
1064 # These can be overridden in ~/.mrconfig.
1080 echo "mr (warning): $@" >&2
1086 if [ -z "$1" ] || [ -z "$2" ]; then
1087 error "mr: usage: hours_since action num"
1089 for dir in .git .svn .bzr CVS .hg _darcs; do
1090 if [ -e "$MR_REPO/$dir" ]; then
1091 flagfile="$MR_REPO/$dir/.mr_last$1"
1095 if [ -z "$flagfile" ]; then
1096 error "cannot determine flag filename"
1098 delta=$(perl -wle 'print -f shift() ? int((-M _) * 24) : 9999' "$flagfile")
1099 if [ "$delta" -lt "$2" ]; then
1107 svn_test = test -d "$MR_REPO"/.svn
1108 git_test = test -d "$MR_REPO"/.git
1109 bzr_test = test -d "$MR_REPO"/.bzr
1110 cvs_test = test -d "$MR_REPO"/CVS
1111 hg_test = test -d "$MR_REPO"/.hg
1112 darcs_test = test -d "$MR_REPO"/_darcs
1114 test -d "$MR_REPO"/refs/heads && test -d "$MR_REPO"/refs/tags &&
1115 test -d "$MR_REPO"/objects && test -f "$MR_REPO"/config &&
1116 test "$(GIT_CONFIG="$MR_REPO"/config git-config --get core.bare)" = true
1118 svn_update = svn update "$@"
1119 git_update = if [ "$@" ]; then git pull "$@"; else git pull -t origin master; fi
1120 bzr_update = bzr merge "$@"
1121 cvs_update = cvs update "$@"
1122 hg_update = hg pull "$@" && hg update "$@"
1123 darcs_update = darcs pull -a "$@"
1125 svn_status = svn status "$@"
1126 git_status = git status "$@" || true
1127 bzr_status = bzr status "$@"
1128 cvs_status = cvs status "$@"
1129 hg_status = hg status "$@"
1130 darcs_status = darcs whatsnew -ls "$@"
1132 svn_commit = svn commit "$@"
1133 git_commit = git commit -a "$@" && git push --all
1134 bzr_commit = bzr commit "$@" && bzr push
1135 cvs_commit = cvs commit "$@"
1136 hg_commit = hg commit -m "$@" && hg push
1137 darcs_commit = darcs commit -a -m "$@" && darcs push -a
1139 svn_diff = svn diff "$@"
1140 git_diff = git diff "$@"
1141 bzr_diff = bzr diff "$@"
1142 cvs_diff = cvs diff "$@"
1143 hg_diff = hg diff "$@"
1144 darcs_diff = darcs diff "$@"
1146 svn_log = svn log "$@"
1147 git_log = git log "$@"
1148 bzr_log = bzr log "$@"
1149 cvs_log = cvs log "$@"
1150 hg_log = hg log "$@"
1151 darcs_log = darcs changes "$@"
1152 git_bare_log = git log "$@"
1155 url=$(LANG=C svn info . | grep -i ^URL: | cut -d ' ' -f 2)
1156 if [ -z "$url" ]; then
1157 error "cannot determine svn url"
1159 echo "Registering svn url: $url in $MR_CONFIG"
1160 mr -c "$MR_CONFIG" config "`pwd`" checkout="svn co '$url' '$MR_REPO'"
1162 url="$(LANG=C git-config --get remote.origin.url)" || true
1163 if [ -z "$url" ]; then
1164 error "cannot determine git url"
1166 echo "Registering git url: $url in $MR_CONFIG"
1167 mr -c "$MR_CONFIG" config "`pwd`" checkout="git clone '$url' '$MR_REPO'"
1169 url=$(cat .bzr/branch/parent)
1170 if [ -z "$url" ]; then
1171 error "cannot determine bzr url"
1173 echo "Registering bzr url: $url in $MR_CONFIG"
1174 mr -c "$MR_CONFIG" config "`pwd`" checkout="bzr clone '$url' '$MR_REPO'"
1176 repo=$(cat CVS/Repository)
1177 root=$(cat CVS/Root)
1178 if [ -z "$root" ]; then
1179 error "cannot determine cvs root"
1181 echo "Registering cvs repository $repo at root $root"
1182 mr -c "$MR_CONFIG" config "`pwd`" checkout="cvs -d '$root' co -d '$MR_REPO' '$repo'"
1184 url=$(hg showconfig paths.default)
1185 echo "Registering mercurial repo url: $url in $MR_CONFIG"
1186 mr -c "$MR_CONFIG" config "`pwd`" checkout="hg clone '$url' '$MR_REPO'"
1188 url=$(cat _darcs/prefs/defaultrepo)
1189 echo "Registering darcs repository $url in $MR_CONFIG"
1190 mr -c "$MR_CONFIG" config "`pwd`" checkout="darcs get '$url'p '$MR_REPO'"
1192 url="$(LANG=C GIT_CONFIG=config git-config --get remote.origin.url)" || true
1193 if [ -z "$url" ]; then
1194 error "cannot determine git url"
1196 echo "Registering git url: $url in $MR_CONFIG"
1197 mr -c "$MR_CONFIG" config "`pwd`" checkout="git clone --bare '$url' '$MR_REPO'"
1200 if [ ! -e "$MR_PATH" ]; then
1201 error "cannot find program path"
1203 (pod2man -c mr "$MR_PATH" | man -l -) || error "pod2man or man failed"
1207 ed = echo "A horse is a horse, of course, of course.."
1208 T = echo "I pity the fool."
1209 right = echo "Not found."
1212 # vim:sw=8:sts=0:ts=8:noet