hg.rst
changeset 1659 7dc153b728f7
parent 1647 107b566e7a12
child 1660 71e627dc8b8c
equal deleted inserted replaced
1658:32a79e5fb36d 1659:7dc153b728f7
    53 
    53 
    54 or put into ~/.hgrc::
    54 or put into ~/.hgrc::
    55 
    55 
    56   [defaults]
    56   [defaults]
    57   log = -f
    57   log = -f
       
    58 
       
    59 Show supported/loaded plugin.
       
    60 =============================
       
    61 ::
       
    62 
       
    63   $ hg help extensions
       
    64   $ hg showconfig extensions
    58 
    65 
    59 Useful extension.
    66 Useful extension.
    60 =================
    67 =================
    61 
    68 
    62 Put to your ~/.hgrc:
    69 Put to your ~/.hgrc:
   381 ::
   388 ::
   382 
   389 
   383   $ hg qpop -a
   390   $ hg qpop -a
   384   $ for patch in `hg qser`; do hg qrm $patch; done
   391   $ for patch in `hg qser`; do hg qrm $patch; done
   385 
   392 
   386 Show supported/loaded plugin.
       
   387 =============================
       
   388 ::
       
   389 
       
   390   $ hg help extensions
       
   391   $ hg showconfig extensions
       
   392 
       
   393 Proxy.
   393 Proxy.
   394 ======
   394 ======
   395 ::
   395 ::
   396 
   396 
   397   $ hg clone --config http_proxy.host=$host:$port \
   397   $ hg clone --config http_proxy.host=$host:$port \
   427 
   427 
   428 See:
   428 See:
   429 
   429 
   430   http://mercurial.selenic.com/wiki/TipsAndTricks#Merge_or_rebase_with_uncommitted_changes
   430   http://mercurial.selenic.com/wiki/TipsAndTricks#Merge_or_rebase_with_uncommitted_changes
   431   http://mercurial.selenic.com/wiki/ShelveExtension
   431   http://mercurial.selenic.com/wiki/ShelveExtension
       
   432 
       
   433 Rebase.
       
   434 =======
       
   435 
       
   436 SVN like update::
       
   437 
       
   438   $ hg pull --rebase
       
   439 
       
   440 Rebase draft (unpublished) changes over public changes::
       
   441 
       
   442   $ hg rebase -s 'draft()' -d 'public()'
   432 
   443 
   433 Find greatest common ancestor of changesets.
   444 Find greatest common ancestor of changesets.
   434 ============================================
   445 ============================================
   435 ::
   446 ::
   436 
   447