]> git.madduck.net Git - code/myrepos.git/commitdiff

madduck's git repository

Every one of the projects in this repository is available at the canonical URL git://git.madduck.net/madduck/pub/<projectpath> — see each project's metadata for the exact URL.

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.

SSH access, as well as push access can be individually arranged.

If you use my repositories frequently, consider adding the following snippet to ~/.gitconfig and using the third clone URL listed for each project:

[url "git://git.madduck.net/madduck/"]
  insteadOf = madduck:

fix leaf subdir case
authorJoey Hess <joey@kodama.kitenet.net>
Sun, 21 Oct 2007 23:33:33 +0000 (19:33 -0400)
committerJoey Hess <joey@kodama.kitenet.net>
Sun, 21 Oct 2007 23:33:33 +0000 (19:33 -0400)
mr

diff --git a/mr b/mr
index 0bded236e0e782a267a1d6e2abe5672503197912..d9cde9372cd193a6f1c408f3caa2d271ac50366d 100755 (executable)
--- a/mr
+++ b/mr
@@ -239,8 +239,7 @@ repositories be processed earlier, and larger values to make repositories
 be processed later.
 
 Note that if a repository is located in a subdirectory of another
-repository, ordering it to be processed earlier is not recommended, as this
-can cause confusion during checkouts.
+repository, ordering it to be processed earlier is not recommended.
 
 =item chain
 
@@ -448,7 +447,7 @@ foreach my $repo (@list) {
 }
 if (! @repos) {
        # fallback to find a leaf repo
-       foreach my $repo (@list) {
+       foreach my $repo (reverse @list) {
                my $topdir=$repo->{topdir};
                my $subdir=$repo->{subdir};