]> 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:

break example
authorJoey Hess <joey@kitenet.net>
Fri, 5 Jul 2013 18:23:58 +0000 (14:23 -0400)
committerJoey Hess <joey@kitenet.net>
Fri, 5 Jul 2013 18:23:58 +0000 (14:23 -0400)
doc/index.mdwn

index 88db81219d769a29935e253b66b5738fcfc78eba..784fcf8b17c3eaa60a720e7dfe604fddd446f923 100644 (file)
@@ -40,8 +40,7 @@ run for any repository. It's like a `Makefile` for repositories.
        checkout = git@github.com:joeyh/foo.git
        update = git pull --rebase
 
-You can make up your own commands too, and add them to a single repository,
-or even globally so `mr` can use them in all repositories.
+You can make up your own commands too:
 
        [bar]
        # This repository has an upstream, which I've forked; 
@@ -56,6 +55,8 @@ or even globally so `mr` can use them in all repositories.
                git merge upstream/master
                git push origin master
 
+You can even define commands globally, so `mr` can use them in all repositories.
+
        [DEFAULT]
        # Teach mr how to `mr gc` in git repos.
        git_gc = git gc "$@"