Using Monotone 0.25
Setting up a monotone DB
I've also started a write-up of the steps needed to get monotone to work for revision control. I don't know if it's the last word in revision control systems, but it fits my needs nicely so far.
Steps to do once per user
monotone genkey developer@nowhere.us
cat >> ~/.monotone/monotonerc
function get_passphrase(keypair_id)
return "developersecretpassphrase"
endfunction
^D
chmod 600 ~/.monotone/monotonerc
Steps for each repository
monotone --db=../foo.db db init
monotone --db=../foo.db --branch us.nowhere.foo.trunk setup foo
cd foo
cat >> Makefile
all: junk
junk:
monotone add Makefile
monotone diff
monotone ci
monotone st
Last changed 2006-Apr-20