Services-Whois.md
... ...
@@ -43,13 +43,10 @@ Monotone is an distributed revision control system. Monotone tracks revisions to
43 43
```sh
44 44
mtn genkey you@domain.tld
45 45
mtn pubkey you@domain.tld # send the output to some $monotone_server operator(do NOT send the keypair!)
46
-mtn --db /home/some/path/to/db.mtn db init
47
-mtn --db /home/some/path/to/db.mtn pull -k "" $monotone_server "*"
48
-mtn --db /home/some/path/to/db.mtn --branch net.dn42.registry co /home/some/path/to/store/branch
49
-cd /home/some/path/to/store/branch
46
+mtn clone 'mtn://$monotone_server/?net.dn42.*' --branch net.dn42.registry
47
+cd net.dn42.registry
50 48
$add_your_objects
51 49
mtn add --unknown
52 50
mtn ci -k you@domain.tld
53
-mtn sync -k you@domain.tld $monotone_server "*" # once the monotone server operator has deployed your key
54
-# Note: that "*" is not there by accident. it specifies, which branches to sync, the default is to sync none!
51
+mtn sync
55 52
```
... ...
\ No newline at end of file