Category: ASP
- pulling through the proxy
hg --config http_proxy.host=192.168.6.1:3128 pull
- useful commands
hg log -v hg summary hg branches
- add a tag
hg tag -r 03e958f16146 andrius-test -u andrius hg commit -m "added a tag, playing around" hg --config http_proxy.host=10.5.0.1:3128 push
- update to a particular tag
hg update -r MyTagName
- get revision number of your current working copy
hg id
- diff between your current working copy and the tip
hg diff -r tip
- list heads
hg heads