X-Git-Url: https://git.madduck.net/code/myrepos.git/blobdiff_plain/75e00b8bfd7e8661c706e7f5c497ede9fa20b2af..a36be6f63b310b4b4f84381546c73625f450b9c4:/doc/index.mdwn diff --git a/doc/index.mdwn b/doc/index.mdwn index 01a3e78..784fcf8 100644 --- a/doc/index.mdwn +++ b/doc/index.mdwn @@ -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,9 +55,11 @@ 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 reup` to update with rebasing. - git_reup = git pull --rebase + # Teach mr how to `mr gc` in git repos. + git_gc = git gc "$@" This only scratches the surface of the ways you can use myrepos to automate and mange your repositories!