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

  • SEARCH
  • Home
  • 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 8094147
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 5, 20262026-06-05T20:42:17+00:00 2026-06-05T20:42:17+00:00

I use Mercurial/TortoiseHg as my source control. So far I have a single app

  • 0

I use Mercurial/TortoiseHg as my source control.

So far I have a single app and just about to finish the version 1.0. Once V 1.0 goes live, we already have features lined-up ready to be programmmed for the next version.

It is a phone app and right now V1.0 will be free but might want to make V2.0 paid and also later might make some minor bug/fixes updates to Free version.

I am not sure how the bug fixing will work while V2.0 is in progress.

My question is:

Do I need to fork or branch my repository from the point of V1.0 or I simply keep adding features to my current repository?
Whatever I need to do, I would also like to know why I need to do that.

Thanks.

  • 1 1 Answer
  • 0 Views
  • 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-06-05T20:42:19+00:00Added an answer on June 5, 2026 at 8:42 pm

    I’d do the following:

    Tag the revision that you release as v1.0

    hg update -r <revision that's 1.0>
    hg tag v1.0
    hg ci -m 'Created V1.0 Tag'
    

    Make a branch for any bug fixes that will go on top of that. This could be when you release V1.0, or when you have the first bug fix for it.

    hg update v1.0 (or ideally the revision that added the V1.0 tag if it's immediately after V1.0)
    hg branch release_v1
    <Possibly do bug fix>
    hg ci
    

    Go back to the default branch to continue development of v2.

    hg update default
    <carry on working>
    

    When you’ve got a bug-fix for v1

    hg update release_v1
    <do bug fix>
    

    Then merge forward bug fixes from v1.x to v2.x

    hg update default
    hg merge release_v1
    hg ci -m 'Merged V1 bug fixes into V2'
    

    You create new tags as you do new releases. The release_v1 branch just keeps going, accumulating bug fixes, being merged into default (your development branch) when necessary. Just make sure you’re on the default branch when you merge as that determines which branch name the merge change-set has.


    Editted to add that this is a variation on the stable/default work-flow that someone else mentioned, but I like to have a branch for each major release as then I can have more than one major release accepting bug fixes.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I just picked up TortoiseHg to use for distributed source control on Windows and
We are starting to use Mercurial for source control. We have configured the HGRC
is it possible to use Mercurial version control to track Word or PDF files?
I have done some programming and I have used Mercurial for source control. I
I develop Qt-based project and use Mercurial repository (bitbucket.org service) for version control. Each
I use Mercurial for version controlling my source code. But some people prefer other
I use Mercurial as source control with the main repository managed on KILN. At
I use Mercurial in a single-user workflow to have the option to roll back
I've used ( and still use ) mercurial and git. I have some repos
I have a little private Google code project. For a SCM I use Mercurial.

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.