Differences between revisions 1 and 2
Revision 1 as of 2013-05-20 04:40:39
Size: 1511
Editor: webproxy
Comment:
Revision 2 as of 2013-09-03 14:46:50
Size: 377
Editor: MelindaHo
Comment:
Deletions are marked like this. Additions are marked like this.
Line 1: Line 1:
#pragma section-numbers 2
= Branching =

This is a Mercurial plugin that enables simpler branch management. Because named branches were only recently added, feature branch workflows that rely heavily on named branches can use a little extra love.

<<TableOfContents>>

== Status ==

'''This extension is not distributed with Mercurial.'''

''Author: '' ''John C Barstow''

Repository: ''https://bitbucket.org/jbowtie/hg-branching''

Web page: ''https://bitbucket.org/jbowtie/hg-branching''

== Overview ==

This extension adds a small number of commands to make working with named branches more convenient.

'''harvest'''

`$ hg harvest BRANCH_NAME [TARGET_BRANCH]`

Close the specified branch and merge it into the default branch, or the named target branch. If the merge fails, you will need to resolve and commit the merge manually.

'''close'''

`$ hg close BRANCH_NAME`

Close the specified branch. This command does not affect your working directory.

'''switch'''

`$ hg switch BRANCH_NAME`

Switch to the specified branch. This is essentially an alias of hg update -C.

'''branchdiff'''

`$ hg branchdiff BRANCH_NAME`

Shows all the branch changes consolidated into a single diff. Technically this is a diff between the branch creation point and the tip of the branch.

== Configuration ==
Configure your .hgrc to enable the extension by adding following lines:

{{{
[extensions]
branching = /path/to/branching
}}}

----
CategoryExtensionsByOthers
I would like to introduce myself to you, I am George but it is not the most masculine name. The factor I adore most cooking and I have been undertaking it for quite a while. I applied to be unemployed but now I am a credit card debt collector. For decades I have been dwelling in New Mexico. Verify out the most current news on my web site: http://cannatv.org/users/JessikaPU

I would like to introduce myself to you, I am George but it is not the most masculine name. The factor I adore most cooking and I have been undertaking it for quite a while. I applied to be unemployed but now I am a credit card debt collector. For decades I have been dwelling in New Mexico. Verify out the most current news on my web site: http://cannatv.org/users/JessikaPU

BranchingExtension (last edited 2013-09-04 16:27:37 by mpm)