Add "Update Current Branch" button on Synchronize Dialog
Created originally on Bitbucket by Anonymous
Currently we have a few named branches in our repository. If I'm working in "Branch X" and I do a Pull I will pull down the changes from all the branches (which is what I want so that I can merge from 'default' when I am ready).
If I click (or have the Pull option set) "Update to Tip" this will update my working folder to the current tip, which may be another branch or the 'default' branch. This is annoying as I wanted to only update to my current branch "Branch X". Basically this button is of no use if you're working in a branch.
I believe the difference is just issuing the commands separately: hg pull hg update --- updates to tip of current branch
vs.
hg pull -u --- updates to tip & may switch branch