Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 865145
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 15, 20262026-05-15T09:35:43+00:00 2026-05-15T09:35:43+00:00

Mercurial – Is it possible to merge changes from the trunk to a branch,

  • 0

Mercurial – Is it possible to merge changes from the trunk to a branch, within the same repository?

If yes, is it possible with TortoiseHg?

  • 1 1 Answer
  • 1 View
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-15T09:35:44+00:00Added an answer on May 15, 2026 at 9:35 am

    There are two things you can do, merge or transplant. These answers assume the command line, you may have to search through your menus in tortoise to find similar functionality.

    You can merge all the changes from one branch to another. The procedure for this is:

    hg update mybranch
    hg merge default
    hg commit -m "Merging with default"
    

    This will bring all commits from default into your branch, but not the other way around. Later you can reintegrate your branch with default by doing the opposite

    hg update default
    hg merge mybranch
    hg commit -m "Bringing in changes from mybranch"
    

    If you want to bring in one or more specific commits that were committed in another branch, you can do that with ‘transplant’, which is a mercurial extension.

    # reqiured in ~/.hgrc
    [extensions]
    transplant = 
    

    These are the commands you can use to use transplant:

    hg log | less
    # (find revision number, the part after the colon, i.e. "88660cca467d")
    hg update mybranch
    hg transplant 88660cca467d
    # (no commit required)
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

The Mercurial repository has two branches that originate from revision 0. Branch names are
I've got a mercurial repository. It was on rev A. I made some changes,
In Mercurial/TortoiseHg, given the following example, what is the easiest way to merge revision
We have a Mercurial repository converted from Subversion a while ago and have today
I have a local mercurial repository with some site-specific changes in it. What I
I'm new to mercurial and I read that it's not possible to merge only
I use Mercurial/TortoiseHg as my source control. So far I have a single app
I have a mercurial repository that is not accessible by Http. I can't figure
I have a mercurial repository myProject : myProject |- file1.js |- file2.css |- useful.js
Using mercurial, I've run into an odd problem where a line from one committer

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.