Expanded the README.txt file with the text of Richard
authorIvan Herman <ivan@w3.org>
Thu, 02 Jun 2011 11:31:08 +0200
changeset 1 e049d5f17cec
parent 0 e56e80e78523
child 29 b0fec1a4d53e
Expanded the README.txt file with the text of Richard
README.txt
--- a/README.txt	Wed Jun 01 17:42:48 2011 +0100
+++ b/README.txt	Thu Jun 02 11:31:08 2011 +0200
@@ -1,2 +1,31 @@
 This repository is used by the RDF WG.
 http://www.w3.org/2011/rdf-wg/wiki/Main_Page
+
+All members of the RDF WG should be able to use this repository.
+
+For those who have not used mercurial before, here is how to start:
+
+
+# To start:
+# Create on your own filespace a directory for mercurial
+cd mercurial-directory
+# Create a clone of the repository
+hg clone https://dvcs.w3.org/hg/rdf/
+
+# From that point on:
+# Edit a file
+cd rdf
+edit Any-file-in the-directory-tree
+
+# Commit the change to your local clone
+hg commit -m 'Some comments on what you did and why'
+
+# Push all your local changes to the public repository
+cd rdf
+hg push
+
+# To receive changes made by others into your local repository:
+cd rdf
+hg pull
+
+A good intro to mercurial: http://hginit.com/
\ No newline at end of file