# HG changeset patch # User Oleksandr Gavenko # Date 1300737132 -7200 # Node ID eb311f9f0571f5f4b82cffaf266760fcec66b88e # Parent 9f22bd33bf77b0deb276b6e5cce39194922e8281# Parent c8a5bbbc27c65a765099a3f4ea1d28818aa75f6c Automated merge with file:///cygdrive/e/srv/hg/tips diff -r c8a5bbbc27c6 -r eb311f9f0571 freebsd.rst --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/freebsd.rst Mon Mar 21 21:52:12 2011 +0200 @@ -0,0 +1,16 @@ +-*- mode: outline; coding: utf-8 -*- + +* FreeBSD ports. + +Configure package: + + $ sudo make config + +Build package: + + $ sudo make + +Install package: + + $ sudo make install + diff -r c8a5bbbc27c6 -r eb311f9f0571 hg.rst --- a/hg.rst Wed Mar 09 23:07:55 2011 +0200 +++ b/hg.rst Mon Mar 21 21:52:12 2011 +0200 @@ -61,6 +61,28 @@ [defaults] log = -f +* Clone specific branches. + + $ hg clone http://your/repo -r $branch + +* Closing branches. + + $ hg branches +$branch (inactive) +... + $ hg branches -a +... # no $branch + $ hg up -r $branch + $ hg ci --close-branch -m "Bla-bla-bla" + $ hg up -r default + $ hg branches +... # no $branch + $ hg branches -c +$branch (inactive) +... + +To reopen closed branch just update to it and commit anything! + * Remove/rename files history from repo. $ cat >filemap.txt < + sxe ud + +** Set breakpoint by pattern and/or on specific module. + + bm ! # set breakpoints on 'module' with name 'name' + bm *!* # set breakpoints on all names with prefix 'prefix' + bm !* # set breakpoints on all names in module 'module' + +'bp', 'bm' commands sets software breakpoints, debugger replaces the processor instruction with a +break instruction. + * Running at startup. HKCU\Software\Microsoft\Windows\CurrentVersion\Run