Go to file
Mathieu Lacage 109139b07f make OnOffApplication not depend on IUdp 2007-05-14 12:59:44 +02:00
doc Added/fixed some doxygen 2007-05-11 10:37:01 -04:00
examples make OnOffApplication not depend on IUdp 2007-05-14 12:59:44 +02:00
ns3 Add support for building with WAF 2007-05-07 12:01:51 +01:00
samples make OnOffApplication not depend on IUdp 2007-05-14 12:59:44 +02:00
src make OnOffApplication not depend on IUdp 2007-05-14 12:59:44 +02:00
utils WAF: simplify wscripts using the new chained uselib_local dependencies feature of WAF SVN; now build all samples and examples; add --disable-rpath configure option; add WAF build instructions. 2007-05-13 12:46:18 +01:00
.hgignore Add support for building with WAF 2007-05-07 12:01:51 +01:00
.hgtags Added tag release ns-3.0.1 for changeset 56928998e05c 2007-04-01 15:53:58 +02:00
AUTHORS Final pre-release files 2007-03-30 15:39:02 -07:00
BUILD merge 2006-12-04 13:51:42 +01:00
BUILD.WAF Update WAF SVN checkout instructions; now the URL points to a special WAF SVN tag that represents code tested to work with NS-3. 2007-05-13 13:58:34 +01:00
INSTALL Final pre-release files 2007-03-30 15:39:02 -07:00
LICENSE Final pre-release files 2007-03-30 15:39:02 -07:00
README Final pre-release files 2007-03-30 15:39:02 -07:00
RELEASE_NOTES Final pre-release files 2007-03-30 15:39:02 -07:00
SConstruct make OnOffApplication not depend on IUdp 2007-05-14 12:59:44 +02:00
VERSION Final pre-release files 2007-03-30 15:39:02 -07:00
build.py make sure that there is a C and C++ compiler. Otherwise, we generate large amounts of spurious unrelated errors. 2007-03-14 09:55:35 +01:00
wscript WAF: simplify wscripts using the new chained uselib_local dependencies feature of WAF SVN; now build all samples and examples; add --disable-rpath configure option; add WAF build instructions. 2007-05-13 12:46:18 +01:00

README

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