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.
1 # An example config file for the mr(1) command.
4 # Teach mr how to run svn cleanup.
5 cleanup = if [ -d "$MR_REPO"/.svn ]; then svn cleanup ; fi
6 # And how to run git gc and push.
7 gc = if [ -d "$MR_REPO"/.git ]; then git gc; fi
8 push = if [ -d "$MR_REPO"/.git ]; then git push; fi
9 # This hack is here because git-pull stupidly outputs tag info to stderr.
10 # Shut it up but let real errors through, for use in cron.
11 quietupdate = mr -s -n update 3>&1 1>/dev/null 2>&3 | egrep -v '(storing tag|tag: )' || true
12 # Tests used in the skips below.
13 # - wantsrc checks whether I probably want a full source checkout (quite
15 # - wantmedia checks whether I probably want various large media files
17 # - private are hosts I trust private data to
18 # - mylaptop only succeeds if it's on my main development laptop, which
19 # gets lots of extra cruft
20 # - kite only succeeds on kite
23 test "$(whoami)" = joey
26 if [ "$(whoami)" = joey ]; then
36 if [ "$(whoami)" = joey ]; then
38 wren|kodama|dragon|dodo|bluebird)
46 test "$(hostname)" = kodama
49 test "$(hostname)" = wren
53 checkout = git clone ssh://git.kitenet.net/srv/git/kitenet.net/mr
57 checkout = git clone git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6.git
58 skip = ! mylaptop || ! wantsrc ||
59 ([ "$1" = update ] && [ $(hours_since "$1") -lt 12 ])
62 # A merge of the upstream dpkg git repo and my own personal branch.
64 git clone git://git.debian.org/git/dpkg/dpkg.git &&
66 git remote add kite ssh://git.kitenet.net/srv/git/kitenet.net/dpkg &&
68 git checkout -b sourcev3 kite/sourcev3
69 update = git pull origin master && git pull kite sourcev3
70 commit = git push kite
76 CVSROOT=:ext:joeyh@cvs.debian.org:/cvs/webwml
77 cvs co -d www.debian.org webwml
78 # cvs sucks sufficiently that I prefer to run these commands by hand,
80 update = echo "skipping cvs update (too slow)"
81 status = echo "skipping cvs status (too ugly)"
82 skip = ! mylaptop || ! wantsrc
84 # My home directory, which I keep in svn.
86 checkout = svn co svn+ssh://svn.kitenet.net/srv/svn/joey/trunk/home-$(hostname) joey
87 # run svnfix after each update
88 update = svn update && svnfix
91 checkout = git clone ssh://git.kitenet.net/srv/git/kitenet.net/joey/private/mail
94 # Example of how to remember to delete a repo, when one mrconfig file is
95 # used on multiple systems. If you're feeling brave, use rm -rf $MR_REPO
96 # instead. This approach can also be used for renames.
98 update = error "$MR_REPO is no longer used and should be deleted"
99 skip = ! test -d "$MR_REPO"