how does someone merge a fix of patch,bundle in bzr

Asked by Bubba Siggler

 have tried to find out with search on how to install or merge a patch, bundle, in bzr. does one have to wait until the rc. is stable

Question information

Language:
English Edit question
Status:
Solved
For:
Bazaar Edit question
Assignee:
No assignee Edit question
Solved by:
Dan Watkins
Solved:
Last query:
Last reply:
Revision history for this message
Best Dan Watkins (oddbloke) said :
#1

Are you asking how to install a patch or bundle you've seen on the Bazaar development mailing list onto your system? Or are you asking how to merge a patch or bundle into a branch?

If the former, you will want to get a copy of the Bazaar development branch (use 'bzr branch http://bazaar-vcs.org/bzr/bzr.dev/ bzr.dev'). You will then want to merge the bundle into that directory (unless it's already been applied to the development branch). You can then use 'python setup.py install' in the bzr.dev directory (as root) to install the updated version to your system. Be warned that this is a development version, so things might be broken etc. (though this is unlikely with bzr.dev).

If the latter, cd to the branch and run 'bzr merge /path/to.bundle'.

Revision history for this message
Bubba Siggler (bud3) said :
#2

Hi Daniel,
that for the answers. It should help others also is the question is ask.

best regards

Bubba

Revision history for this message
Bubba Siggler (bud3) said :
#3

Thanks Daniel Watkins, that solved my question.