hgext3rd/topic/__init__.py
changeset 3768 482195001997
parent 3727 3f26434bdf5c
parent 3765 4aabc5c8b2af
child 3769 1bc4b0807c37
equal deleted inserted replaced
3762:cd194eb336bd 3768:482195001997
    68 =====================
    68 =====================
    69 
    69 
    70 The extensions come with an option to enforce that there is only one heads for
    70 The extensions come with an option to enforce that there is only one heads for
    71 each name in the repository at any time.
    71 each name in the repository at any time.
    72 
    72 
       
    73 ::
       
    74 
    73     [experimental]
    75     [experimental]
    74     enforce-single-head = yes
    76     enforce-single-head = yes
    75 
    77 
    76 Publishing behavior
    78 Publishing behavior
    77 ===================
    79 ===================
    78 
    80 
    79 Topic vanish when changeset move to the public phases. Moving to the public
    81 Topic vanish when changeset move to the public phases. Moving to the public
    80 phase usually happens on push, but it is possible to update that behavior. The
    82 phase usually happens on push, but it is possible to update that behavior. The
    81 server needs to have specific config for this.
    83 server needs to have specific config for this.
    82 
    84 
    83     # everything pushed become public (the default)
    85 * everything pushed become public (the default)::
       
    86 
    84     [phase]
    87     [phase]
    85     publish = yes
    88     publish = yes
    86 
    89 
    87     # nothing push turned public
    90 * nothing push turned public::
       
    91 
    88     [phase]
    92     [phase]
    89     publish = no
    93     publish = no
    90 
    94 
    91     # topic branches are not published, changeset without topic are
    95 * topic branches are not published, changeset without topic are::
       
    96 
    92     [phase]
    97     [phase]
    93     publish = no
    98     publish = no
    94     [experimental]
    99     [experimental]
    95     topic.publish-bare-branch = yes
   100     topic.publish-bare-branch = yes
    96 
   101