Test of commit access with Mercurial cheat sheet
authorTom Henderson <tomh@tomh.org>
Wed, 14 Feb 2007 22:04:38 -0800
changeset 263 618a886c7130
parent 262 7e9dc6fab2e0
child 264 128d8d1bfb51
Test of commit access with Mercurial cheat sheet
README
--- a/README	Mon Feb 12 23:46:53 2007 +0100
+++ b/README	Wed Feb 14 22:04:38 2007 -0800
@@ -1,7 +1,29 @@
-empty README
+Mercurial cheat sheet
+
+clone this repository:
+----------------------
+hg clone http://code.nsnam.org/ns-3-dev
 
-random test
+pull development tree changes to your local repository:
+------------------------------------------------------
+hg pull http://code.nsnam.org/ns-3-dev
+hg update (apply the changes)  OR
+hg merge (if you've made local changes)
 
-tomh test
+commit locally:
+--------------
+hg status
+hg add <new files, if any>
+hg ci -m "message"
 
-raj test
+push upwards (developers access only):
+--------------------------------------
+hg push ssh://code@code.nsnam.org//home/code/repos/ns-3-dev
+
+view the change log:
+--------------
+hg log <file>
+
+doing a scons make clean:
+------------------------
+scons -c