How do you maintain development code and production code?

53,367

Solution 1

Update 2019:

These days, the question would be seen in a context using Git, and 10 years of using that distributed development workflow (collaborating mainly through GitHub) shows the general best practices:

  • master is the branch ready to be deployed into production at any time: the next release, with a selected set of feature branches merged in master.
  • dev (or integration branch, or 'next') is the one where the feature branch selected for the next release are tested together
  • maintenance (or hot-fix) branch is the one for the current release evolution/bug fixes, with possible merges back to dev and or master

That kind of workflow (where you don't merge dev to master, but where you merge only feature branch to dev, then if selected, to master, in order to be able to drop easily feature branches not ready for the next release) is implemented in the Git repo itself, with the gitworkflow (one word, illustrated here).
See more at rocketraman/gitworkflow. The history of doing this vs Trunk-Based-Development is noted in the comments and discussions of this article by Adam Dymitruk.

https://github.com/rocketraman/gitworkflow/raw/master/docs/images/topicgraduation.png

(source: Gitworkflow: A Task-Oriented Primer)

Note: in that distributed workflow, you can commit whenever you want and push to a personal branch some WIP (Work In Progress) without issue: you will be able to reorganize (git rebase) your commits before making them part of a feature branch.


Original answer (Oct. 2008, 10+ years ago)

It all depends of the sequential nature of your release management

First, is everything in your trunk really for the next release? You might find out that some of the currently developed functions are:

  • too complicated and still need to be refined
  • not ready in time
  • interesting but not for this next release

In this case, trunk should contain any current development efforts, but a release branch defined early before the next release can serve as consolidation branch in which only the appropriate code (validated for the next release) is merged, then fixed during the homologation phase, and finally frozen as it goes into production.

When it comes to production code, you also need to manage your patch branches, while keeping in mind that:

  • the first set of patches might actually begin before to first release into production (meaning you know you will go into production with some bugs you can not fix in time, but you can initiate work for those bugs in a separate branch)
  • the other patch branches will have the luxury to start from a well-defined production label

When it comes to dev branch, you can have one trunk, unless you have other development efforts you need to make in parallel like:

  • massive refactoring
  • testing of a new technical library which might change the way you calls things in other classes
  • beginning of a new release cycle where important architectural changes need to be incorporated.

Now, if your development-release cycle is very sequential, you can just go as the other answers suggest: one trunk and several release branches. That works for small projects where all the development is sure to go into the next release, and can just be frozen and serve as a starting point for release branch, where patches can take place. That is the nominal process, but as soon as you have a more complex project... it is not enough anymore.


To answer Ville M.'s comment:

  • keep in mind that dev branch does not mean 'one branch per developer' (which would trigger 'merge madness', in that each developer would have to merge the work of other to see/get their work), but one dev branch per development effort.
  • When those efforts need to be merged back into trunk (or any other "main" or release branch you define), this is the work of the developer, not - I repeat, NOT - the SC Manager (who would not know how to solve any conflicting merge). The project leader may supervise the merge, meaning make sure it starts/finish on time.
  • whoever you choose for actually doing the merge, the most important is:
    • to have unit tests and/or assembly environment in which you can deploy/test the result of the merge.
    • to have defined a tag before the beginning of the merge in order to be able to get back to previous state if said merge proves itself too complex or rather long to resolve.

Solution 2

We use:

  • development branch exclusively

until the project nears completion, or we are creating a milestone version (eg. product demo, presentation version), then we (regularly) branch off our current development branch into the:

  • release branch

No new features go into the release branch. Only important bugs are fixed in the release branch, and the code to fix these bugs is reintegrated into the development branch.

The two-part process with a development and a stable (release) branch makes life a lot easier for us, and i don't believe we could improve any part of it by introducing more branches. Each branch also has it's own build process, meaning every couple minutes a new build process is spawned and so after a code checkin we have a new executable of all build versions and branches within about half an hour.

Occassionally we also have branches for a single developer working on a new and unproved technology, or creating a proof of concept. But generally it's only done if the changes affects many parts of the codebase. This happens in average every 3-4 months and such a branch is usually reintegrated (or scrapped) within a month or two.

Generally i don't like the idea of every developer working in his own branch, because you "skip go and move directly to integration hell". I would strongly advise against it. If you have a common codebase, you should all work in it together. This makes developers more wary about their checkins, and with experience every coder knows which changes are potentially breaking the build and so testing is more rigorous in such cases.

On the check-in early question:

If you require only PERFECT CODE to be checked in, then actually nothing should get checked in. No code is perfect, and for the QA to verify and test it, it needs to be in the development branch so a new executable can be built.

For us that means once a feature is complete and tested by the developer it is checked in. It may even be checked in if there are known (non-fatal) bugs, but in that case the people who would be affected by the bug are usually informed. Incomplete and work-in-progress code can also be checked in but only if it doesn't cause any obvious negative effects, like crashes or breaking existing functionality.

Every now and then an unavoidable combined code & data checkin will make the program unusable until the new code has been built. The very least we do is to add a "WAIT FOR BUILD" in the check-in comment and/or send out an e-mail.

Solution 3

For what it's worth, this is how we do it.

Most development is performed in trunk, although experimental features or things that might break the system significantly tend to get their own branch. This works out pretty well as it means every developer always has the latest version of everything in their working copy.

It does mean that it's important to keep trunk in vaguely working order, as it's perfectly possible to completely break it. In practice that doesn't happen often, and is rarely a significant problem.

For a production release, we branch trunk, stop adding new features, and work on bugfixing and testing the branch (regularly merging back into trunk) until it's ready for release. At which point we do a final merge into trunk to make sure everything is in there, and then release.

Maintenance can then be performed on the release branch as necessary, and those fixes can be easily merged back into trunk.

I don't claim this to be a perfect system (and it still has some holes - I don't think our release management is a tight enough process yet), but it works well enough.

Solution 4

Why no one still mention this? A successful Git branching model.

It's for me the ultimate branching model!

If you're project is small, don't use all the time all the different branches (perhaps you could skip feature branches for small features). But otherwise, it's the way to do it!

branching model

Solution 5

Development code on branches, Live code tagged on Trunk.

There doesn't need to be a "commit only perfect code" rule - anything that the developer misses should get picked up in four places: the code review, branch testing, regression testing, final QA testing.

Here's a more detailed step-by-step explanation:

  1. Do all development on a branch, committing regularly as you go.
  2. Independent Code Review of changes once all development is complete.
  3. Then pass the branch over to Testing.
  4. Once branch testing complete, merge code into Release Candidate branch.
  5. Release Candidate branch is regression tested after each individual merge.
  6. Final QA and UA Testing performed on RC after all dev branches merged in.
  7. Once QA and UAT are passed, merge release branch into MAIN/TRUNK branch.
  8. Finally, tag the Trunk at that point, and deploy that tag to Live.
Share:
53,367
Mohit Ranka
Author by

Mohit Ranka

I am a Python Developer in a text analytics startup, based out of chennai, India.

Updated on July 18, 2022

Comments

  • Mohit Ranka
    Mohit Ranka almost 2 years

    What are the best practices and rules-of-thumb to follow while maintaining code? Is it good practice to have only the production ready code in the development branch, or should untested latest code be available in the development branch?

    How do you guys maintain your development code and production code?

    Edit - Supplementary question - Does your development team follow "commit-as-soon-as-possible-and-often-even-if-the-code-contains-minor-bugs-or-is-incomplete" protocol or "commit-ONLY-perfect-code" protocol while committing code to DEVELOPMENT branch?

  • Richard Harrison
    Richard Harrison over 15 years
    maybe this would be better as an edit to the previous answer.
  • Till
    Till over 15 years
    He said CVS. :-)
  • shivshankar
    shivshankar over 15 years
    I voted it up. This is similar to what we do, but we are making all changes in development and then trying to merge those bug fixes into the release branch.. Not working. However, I think if we change to do all bug fixes in release and merge into the development, that will fix it.
  • VonC
    VonC almost 11 years
    Yes, except if it often a bit too complex/complete, as scottchacon.com/2011/08/31/github-flow.html illustrates.
  • Philippe
    Philippe almost 11 years
    I agree. Understand the git flow branching model (that solve a lot of problems) and simplify it to match your needs. And GitHub flow require quick deploying but that's not always possible... It's more or less the branching model we use in my project (to keep things simple) but we faced a case where we would have loved to use the git-flow model :( and that put us in really big shit :(
  • cregox
    cregox over 10 years
    The way I see it, this basically copies everything VonC said roughly 1 year before (on his answer), but in a more detailed way and with nice pictures!
  • BornToCode
    BornToCode over 7 years
    You imply that the QA test the development branch, wouldn't it be better if they check the release branch? That way I could start working on my new mad feature that won't be included in the next release (and might break something) while in that time QA will test the existing code without my new feature interfearing?
  • Matthieu
    Matthieu over 5 years
    works well enough and is simple enough as well for code-only-non-vcs-druids developers.
  • Bergi
    Bergi over 3 years
    How do you ensure that master (production) and dev (integration) do not diverge? Especially with hot fixes? Do you regularly merge master back into dev, e.g. after doing a release?
  • VonC
    VonC over 3 years
    @Bergi with gitworflow, dev is an ephemeral branch, deleted and recreated on top of each new release. No divergence there.
  • Matheus Cirillo
    Matheus Cirillo almost 3 years
    It has been more than 12 years since it was originally posted, but I'd like to say that this answer still extremely useful and current.
  • VonC
    VonC almost 3 years
    @MatheusCirillo Thank you Matheus. I had actually revised this answer in 2019 to mention gitworkflow. But I am glad this is still useful.