From 465c2daa6bbb83cd73d16fcab735cb320d4f0541 Mon Sep 17 00:00:00 2001 From: Tom Henderson Date: Wed, 14 Feb 2007 22:04:38 -0800 Subject: [PATCH] Test of commit access with Mercurial cheat sheet --- README | 30 ++++++++++++++++++++++++++---- 1 file changed, 26 insertions(+), 4 deletions(-) diff --git a/README b/README index dd9020af0..fb3cdf0a9 100644 --- a/README +++ b/README @@ -1,7 +1,29 @@ -empty README +Mercurial cheat sheet -random test +clone this repository: +---------------------- +hg clone http://code.nsnam.org/ns-3-dev -tomh 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) -raj test +commit locally: +-------------- +hg status +hg add +hg ci -m "message" + +push upwards (developers access only): +-------------------------------------- +hg push ssh://code@code.nsnam.org//home/code/repos/ns-3-dev + +view the change log: +-------------- +hg log + +doing a scons make clean: +------------------------ +scons -c