README 674 Bytes
Newer Older
1
Mercurial cheat sheet
2

3
4
5
clone this repository:
----------------------
hg clone http://code.nsnam.org/ns-3-dev
Unknown's avatar
Unknown committed
6

7
8
9
10
11
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)
Unknown's avatar
Unknown committed
12

13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
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
Unknown's avatar
Unknown committed
30