Test of commit access with Mercurial cheat sheet

This commit is contained in:
Tom Henderson
2007-02-14 22:04:38 -08:00
parent 604f7b13e7
commit 465c2daa6b

30
README
View File

@@ -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 <new files, if any>
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 <file>
doing a scons make clean:
------------------------
scons -c