アーカイブへの変更点の保存

さあ、アーカイブに変更点を保存しましょう。 もし、私達のアドバイスを聞き入れていなかったのなら (see "Some Free Advice About Log Messages"), ここでログメッセージを作る必要があります。 (hint: use `larch make-log'). アーカイブに変更を保存するには、単に以下のようにします:
        % larch commit
        [....]
commit が完了すると、アーカイブには新しいリビジョンができます:
        % larch revisions hello-world--mainline--0.1
        base-0
        patch-1
あるいはもっと詳細を知りたいなら:
        % larch revisions --summary hello-world--mainline--0.1
        base-0
            initial import
        patch-1
            Fix bugs in the "hello world" string
プロジェクトツリーのパッチログも同様に更新されます:
        % larch log-ls hello-world--mainline--0.1
        base-0
        patch-1

        % larch log-ls --summary hello-world--mainline--0.1
        base-0
            initial import
        patch-1
            Fix bugs in the "hello world" string