X-Git-Url: https://git.madduck.net/code/myrepos.git/blobdiff_plain/cc784447771957b08f4d5b9eed5f62e76ba81b63..83b06b2499053e1c03aa7b85b199a439dc9a396d:/doc/index.mdwn

diff --git a/doc/index.mdwn b/doc/index.mdwn
index e2c05ab..b5a2511 100644
--- a/doc/index.mdwn
+++ b/doc/index.mdwn
@@ -16,7 +16,7 @@ That sets up a `~/.mrconfig` file listing your repositories.
 Now you can run `mr update` in your home directory, and it'll update
 every one of your repositories that you've registered with myrepos.
 
-Want to update repositories in parallel? `mr update -j5` will run 5
+Want to update repositories in parallel? `mr -j5 update` will run 5
 concurrent jobs!
 
 If you run `mr update` inside a repository, it'll only act on that
@@ -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!
@@ -78,9 +79,3 @@ Some more examples of things it can do include:
 ## news
 
 [[!inline pages="news/* and !*/Discussion" show="4" archive=yes]]
-
-[[!sidebar content="""
-* [[install]]
-* [[todo]]
-* <a href="https://flattr.com/thing/39937/mr1" target="_blank"><img src="http://api.flattr.com/button/button-static-50x60.png" alt="Flattr this" title="Flattr this" border="0" /></a>
-"""]]