README.md
changeset 2020 143c8e4dc22d
parent 2019 996a562b6c9f
parent 1838 6942750831bb
child 2021 e6db5d48ebc5
equal deleted inserted replaced
2019:996a562b6c9f 2020:143c8e4dc22d
     1 # topics
       
     2 
       
     3 Topics are an experiment to see if maybe the workflow defined by git
       
     4 branches and hg bookmarks is only partially what users want - perhaps
       
     5 something that feels more like a traditional VCS branch is right, but
       
     6 that it should "dissolve" upon being finished. This extension exists
       
     7 to be a sandbox for that experimentation.
       
     8 
       
     9 # install
       
    10 
       
    11 Enable topics like any mercurial extension: download the source code to a
       
    12 local directory, and add that directory to your `.hgrc`:
       
    13 
       
    14     [extensions]
       
    15     topics=path/to/hg-topics/hgext3rd/topic/
       
    16 
       
    17 # help
       
    18 
       
    19 See 'hg help -e topic' for a generic help.
       
    20 See 'hg help topics' and 'hg help stack' for help on specific commands.
       
    21 See the 'tests/test-topic-tutorial.t' file for a quick tutorial.