The mercurial guide is a pretty good resource. But here's the brief rundown of commands:
- this will make a copy of the server's repository:
hg clone http://code.pobblelabs.org/YOUR_NAME_HERE
- now you've got a local repository
cd YOUR_NAME_HERE (add a file) hg add hg commit
- you have to write a message when you commit. this will show up in the history.
- to see whether you have any changed files or files that haven't been added:
hg st
- to see the difference between your changes and the version previously committed:
hg diff filename
- to push changes back to the server:
hg push