What's the best way to use Bazaar (bzr) as the version control system in Visual Studio 2008?
feedback
|
|
The best I found is TortoiseBZR and the command-line - nothing integrated with VS. | |||
|
feedback
|
|
I wouldn't even bother with TortoiseBZR; bzr is very easy to use from the command line. BTW: The last time I tried it, TortoiseBZR used to lock up windows explorer while it went off to a remote repository to determine the status of files, not sure if it still does this ... ? See also this SO question. | |||
|
feedback
|
|
There is no native integration to Visual Studio, but there is good GUI application, called Bazaar Explorer. It's the part of official standalone installer, and also can be installed separately as bzr plugin. | |||
|
feedback
|
|
If you don't need the SCC integration, just the ability to use the tool, try the setup in this article: | |||
|
feedback
|
|
There's a project in Launchpad, but it looks like it's abandoned, and when I downloaded it, I couldn't get it to build. This is something I'm interested in myself. Tracking adds, drops and renames automatically in an IDE is the way to go. Seeing status is nice too. | |||||
feedback
|
|
Old, I know, but since this shows up on the top for Google search, the best way to integrate is a combination of Visual Studio's External Tools, and tbzrcommand.exe and bzr.exe. You can set up things like Status to go to the output window, and things like Diff to go to the tbzrcommand GUI window. (I'm assuming you've installed TortoiseBzr here.) Using these as examples, in VS open Tools->External Tools, then Add. For the program, browse to the Bazaar directory and select bzr.exe. Name the command Status. For arguments, type "status" (sans quotes). Select that the output should be directed to the vs output window, that the command should be terminated when complete. Open a simple file under code control and add a space somewhere and save, then under external tools, choose status to verify that it shows up as a pending commit action. (You can add these to their own menu later, once they work.) Next, add another external command and name this Diff. For the program, browse to the Bazaar directory, and choose tbzrcommand.exe. For arguments, type "--command=diff --file=$(TargetPath)" (sans quotes). Leave the options all unchecked. Then, for the file above that you added a space, select it in the solution explorer window and choose Tools->Diff. A TortoiseBzr window should appear (along with an annoying DOS window), and show differences between the working version and the latest commit version of the file. For something like a commit, which requires a comment, you'll have to put in arguments like "commit -m " (sans quotes) and check the box to prompt for arguments (to allow the entry of a message for the commit). | |||
feedback
|
|
Unified SCC has support for bzr. It is commercial but claims to be free for OSS projects. | |||
|
feedback
|