hg wants me to do a merge for some reason
authorRichard Cyganiak <richard@cyganiak.de>
Thu, 02 Jun 2011 16:16:48 +0100
changeset 29 b0fec1a4d53e
parent 28 0e11b3cdb3e1 (current diff)
parent 1 e049d5f17cec (diff)
child 30 83cad8acf30d
hg wants me to do a merge for some reason
--- a/README.txt	Wed Jun 01 20:26:39 2011 +0100
+++ b/README.txt	Thu Jun 02 16:16:48 2011 +0100
@@ -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