README
author Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
Sun, 13 May 2007 10:02:10 +0200
changeset 587 8d2fd4c1bb7a
parent 421 56928998e05c
child 635 71b92dfe5f55
permissions -rw-r--r--
remove Application::Copy

ns-3 uses the Mercurial software revision control system

Mercurial cheat sheet

clone this repository:
----------------------
hg clone http://code.nsnam.org/ns-3-dev

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)

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