2010/1/17 <J.B.C.Engelen@...1578...>:
Hi all, How do I make a patch from a checkout?
Annoyed, Johan
It's best to use the command line client. I don't know whether TortoiseBZR can do this. Generating a patch from a checkout should work the same as generating it from a local branch. Patch of uncommitted changes: bzr diff
Patch of all changes since revision 8600, including uncommitted changes: bzr diff -r8600
Patch of changes introduced in revision 8645: bzr diff -r8644..8645
Patch of changes between 8645 and 8700: bzr diff -r8645..8700
Patch of changes in branch xxx relative to branch yyy: bzr diff --old path/to/xxx --new path/to/yyy
To store in a file: bzr diff > killer-feature.patch (also works on Windows)
All this is also explained when you type "bzr help diff".
Regards, Krzysztof