How to work with bazaar through the GUI on Windows: Difference between revisions

From OpenPetra Wiki
Jump to navigation Jump to search
(do not tick "Branches in the repository will default to not having a working tree")
(Replaced content with "We are not using Bazaar anymore, but Git.")
Tag: Replaced
 
Line 1: Line 1:
= Bazaar: Source Code Management System for OpenPetra =
We are not using Bazaar anymore, but Git.
We use Bazaar as Source Code Management (SCM) for OpenPetra. Bazaar is a SCM that is classed as a 'Distributed SCM', which differs considerably from centralised SCM's like CVS. General information about Bazaar can be found here: [http://wiki.bazaar.canonical.com/IntroductionToBzr].
 
* All our source code is hosted 'in the cloud' on Launchpad. (Launchpad is a software development platform provided by the company Canonical [who develop Ubuntu and Bazaar]).
* We are setting up Bazaar to use a [http://wiki.bazaar.canonical.com/SharedRepositoryTutorial 'Shared Repository'] on our development PC's.
** A developer's local repository can contain as many 'branches' as he/she wants and they will get merged into the main development line ('trunk') when work on them has finished.
 
= Alternative: use Bazaar from the command line =
If the GUI is not your prefered way of doing things, please see [[How to work with bazaar on the command line]]
 
= Download Bazaar for Windows =
You find the downloads for Bazaar for Windows here: http://wiki.bazaar.canonical.com/WindowsDownloads
 
We use the ''Standalone 2.4.2 Stable Release'' for OpenPetra development. ''Do not download a newer release as a Bug on Launchpad's servers prevents us from using newer releases!''
 
The download includes the core Bazaar distribution and several GUI's for Bazaar. We recommend to not install TortoiseBzr initially if this is your first experience with Bazaar - it adds more ways to work with Bazaar, which is good, but it might confuse people who are new to Bazaar.
 
We have noticed that the German translation is not complete at all, and on German Windows systems the GUI is quite mixed up with several languages. Solution: delete all but the en locale directory from C:\Program Files\Bazaar\locale. If the local-folder is not available on your computer you can also set the LANG environment variable to the required language code.
 
See also [http://doc.bazaar.canonical.com/explorer/en/visual-tour-windows.html Visual Tour of Bazaar Explorer on Windows].
 
If you still get [[plink console windows with bazaar]], have a look those instructions!
 
= Setup your environment =
Start Bazaar Explorer from the Start menu.
 
[[File:BzrExplorer1.png|center|First screen of Bazaar Explorer]]
 
Go to Settings|Configuration|User Configuration to set your user name and email address:
 
[[File:BzrExplorer2.png|center|User Configuration of Bazaar Explorer]]
 
Set up the bug tracker integration as follows:
[[File:BzrExplorer_Bug_mantis.PNG‎|center|Configure Mantis Bug Tracker Integration]]
Here is the URL for easy copy&paste: <code>https://tracker.openpetra.org/view.php?id={id}</code>
 
The commit dialogue of Bazaar Explorer allows one to specify a bug that was closed with the commit. One needs to prefix the bug number with 'op:' (e.g. 'op:170' if Bug #170 is closed in the openPETRA bug tracker).
 
 
If you prefer to use WinMerge for showing the diff of files, you can configure it in the same window as well:
 
[[File:BzrExplorer3.png|center|Configure WinMerge]]
 
To setup KDiff3 (http://kdiff3.sourceforge.net/) as your Merge tool, configure it in the same window:
 
[[File:BzrExplorer MergeConfig.png|centre|Configure KDiff3 as the merge tool]]
 
For Copy&Paste: <code>"C:\Program Files (x86)\KDiff3\kdiff3.exe" --output "%r" "%b" "%t" "%o"</code>
(For newer versions of Bazaar (from 1.2.2 on) add a new merge tool with the following command: <code>"C:\Program Files (x86)\KDiff3\kdiff3.exe" {base} {this} {other} -o {result}</code>)
 
 
== Line Ending issues ==
To avoid problems with the line endings, and the code generators, in Bazaar Explorer go to Settings/Rules and insert the content listed at below:
<pre>
[name *.cs]
eol = native
[name *.csproj]
eol = native
[name *.sln]
eol = native
[name *.yaml]
eol = native
[name *.xml]
eol = native
[name *.config]
eol = native
[name *.build]
eol = native
[name *.js]
eol = native
[name *.html]
eol = native
[name *.htm]
eol = native
[name *.sql]
eol = native
</pre>
 
See also http://doc.bazaar.canonical.com/development/en/user-reference/eol-help.html
 
= Working with trunk and Branches in Bazaar =
==trunk==
'trunk' is the main branch of the repository.
* ''Only certain members of the core development team can commit to trunk and merge changes from a branch into trunk.''
* For other developers it makes sense to checkout trunk for readonly access to be able to compile the latest version from the repository.
 
==Branches==
We have an agreed procedure in place to ''create a Branch for each bug or feature from Mantis that takes more than 3 hours to develop, including the time needed for coding and testing''.
Only small bugs and not so complicated fixes can be committed directly into trunk.
 
Once the work on a Branch has finished a member of the core development team that can merge changes from a Branch to trunk needs to be contacted to get that Branch merged into trunk. (Work is not considered finished until a merge from trunk and an Uncrustify operation has been carried out as the final steps in your work - your branch will not be accepted for merging into trunk if this hasn't happened!)
 
==Local Repository Format==
Bazaar offers several formats in which the local Bazaar repository can be built. With a 'Shared Repository' (setup described in section [[How to work with bazaar through the GUI on Windows#Create_a_local_repository|Create a local repository]]) one can check out several branches (and trunk which is just a special branch) into separate [http://wiki.bazaar.canonical.com/WorkingTree Working Trees].
 
= Create your own branch =
Every developer needs to create a free account at http://launchpad.net, for hosting their own Branches there.
 
For creating a new branch, you need to follow the following steps...
 
== Setup your Launchpad account ==
You only need to do this once!
 
* First get an account on Launchpad, which is a service provided by the company Canonical, who develop Ubuntu and Bazaar: https://login.launchpad.net/+new_account
* Create a public and private key on launchpad. This is explained [https://help.launchpad.net/YourAccount/CreatingAnSSHKeyPair here].
** It is important to execute pageant and to load the private key into pageant as otherwise the establishing of a SSH connection to the Launchpad server will fail!
* Use plink to verify that the SSH connection to Launchpad is working
** Open a command-line window and change to the Putty directory (probably <code>C:\Program Files\PuTTY</code> or <code>C:\Program Files (x86)\PuTTY</code>).
*** To test directly with your private key, type in the following command: <code>plink.exe -v -ssh -noagent -i <private key path and file name> <Launchpad userid>@bazaar.launchpad.com</code>. Example: <code>C:\Program Files\PuTTY>plink.exe -v -ssh -noagent -i C:\PrivateFile\bazaar.ppk myuserid@bazaar.launchpad.net</code>
*** To test using pageant, type the following: <code>plink.exe -v -ssh -agent <Launchpad userid>@bazaar.launchpad.com</code>
*** In both cases a good response should look similar to the following.  Just hit enter in response since we don't need to actually connect.
Looking up host "bazaar.launchpad.net"
Connecting to 91.189.95.84 port 22
Server version: SSH-2.0-Twisted
Using SSH protocol version 2
We claim version: SSH-2.0-PuTTY_Release_0.62
Using Diffie-Hellman with standard group "group1"
Doing Diffie-Hellman key exchange with hash SHA-1
The server's host key is not cached in the registry. You
have no guarantee that the server is the computer you
think it is.
The server's rsa2 key fingerprint is:
ssh-rsa 1024 9d:38:3a:63:b1:d5:6f:c4:44:67:53:49:2e:ee:fc:89
If you trust this host, enter "y" to add the key to
PuTTY's cache and carry on connecting.
If you want to carry on connecting just once, without
adding the key to the cache, enter "n".
If you do not trust this host, press Return to abandon the
connection.
Store key in cache? (y/n)
* Following is an example of an error. 
Looking up host "bazaar.launchpad.net"
Connecting to 91.189.95.84 port 22
Failed to connect to 91.189.95.84: Network error: Connection reset by peer
Network error: Connection reset by peer
FATAL ERROR: Network error: Connection reset by peer
Here is one list of possible connection errors: http://the.earth.li/~sgtatham/putty/0.58/htmldoc/Chapter10.html
 
* You need to tell your local Bazaar installation your Launchpad username.
** Failing to do so results in an error message: "bzr: ERROR: Connection error: Unable to authenticate to SSH host as xxx.  supported auth types: ['publickey']" where xxx is in the format <code>username@bazaar.launchpad.net</code>!
** This can be done in the Bazaar Explorer GUI: Menu Bazaar / All Commands. The 'Run bzr command' Dialog will be opened (see screenshot below).
** 'Working directory' can be any valid directory, it doesn't matter.
** Select Category 'launchpad'
** Select Command 'launchpad-login'.
** Enter your launchpad id in the 'Options and arguments for command' TextBox.
** Click 'OK'.
** This process only needs to be done once.
 
[[File:BzrExplorerLaunchpadLogin.png|center|Tell Bazaar your launchpad login name]]
 
== Create a local repository ==
You only need to do this once!
 
Now you should configure a directory where you will store all your branches. Go to "Start a new project", and click on "Initialize". Make sure to select the options "Shared repository" and to tick the option "Create parent directories of location, if required". The option "Branches in the repository will default to not having a working tree" should not be ticked.
 
In the example screenshot below I have chosen the directory <code><My Documents>/openpetra/bzr/</code>.
''However'',
* Especially when using Windows 7 it is recommended to create the repository in a local directory (e.g. <code>C:\openpetraorg\</code>) and not one on the network as otherwise compiling with NAnt can give problems. Compiling from a network drive gave the following error on Windows 7:
System.Security.SecurityException: Request for the permission of type 'System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.0.0, ... failed
* By using a directory near the root of a local drive (e.g. <code>C:\openpetraorg\</code>) you are less likely to run into problems with path+file combinations exceeding 250 characters, which is a hard limit on Windows operating systems. (None of the OpenPetra path+file combinations exceed that if you go with this example.)
 
[[File:BzrExplorer4.png|center|Initialize Project Directory]]
 
You might be asked, if you want to create a new "hat". Just say yes. An explanation can be found here: http://wiki.bazaar.canonical.com/BzrExplorer#hats
 
== Create a new branch on Launchpad ==
Make sure you have started pageant with your private key, otherwise your connection to the bazaar server will fail. To do that, you just need to double-click on the .ppk file, which is the private key file which you saved when you created the SSH key for developer access.
 
Open Bazaar Explorer, and select Bazaar / Start / Branch from the menu.
 
[[File:BzrExplorerBranch.png|center|Create your own branch]]
 
The source will be: <code>lp:openpetraorg</code>
 
The destination should be an URL in this form: lp:~LAUNCHPADUSERID/openpetraorg/BRANCH_NAME
 
Naming convention for OpenPetra branches:
* They start with 'dev_'
* followed by the <Mantis Issue Number> that is being addressed in this branch - as a seven-digit number (''fill up with leading 0's'')
* followed by '_'
* followed by <keywords to describe the issue>.
Examples: <code>dev_0000167_import_cc_hierarchy</code> or <code>dev_0001065_Validate_Subscription</code>.
 
Note: You could also create branches that are unrelated to the OpenPetraOrg project: eg. lp:~tpokorra/+junk/BRANCHNAME.
 
== Checkout the code into a working tree ==
After creating the branch on Launchpad you need to download this branch into a separate directory in your own local repository. This can be done by selecting in the menu Bazaar | Start | Checkout.
 
[[File:BzrExplorer5.png|center|Checkout trunk]]
 
Use the URL of your branch:
lp:~LAUNCHPADUSERID/openpetraorg/BRANCH_NAME
 
The destination for the checked out trunk as shown in the screenshot above is:
<My Documents>/openpetra/bzr/work
 
''However'', you need to make sure that the destination folder is ''inside your local repository directory which you have created earlier'' (in step [[How to work with bazaar through the GUI on Windows#Create_a_new_branch_on_Launchpad|Create a new branch on Launchpad]])!
 
Alternatively, for just browsing the source code online one can go to <code>https://code.launchpad.net/~LAUNCHPADUSERID</code> or <code>https://code.launchpad.net/openpetraorg</code> (=trunk).
 
After the checkout has finished, click on Refresh in the Bazaar Explorer, and then double-click trunk to get to the view of the current working tree:
 
[[File:BzrExplorer6.png|center|Explore trunk]]
 
Now you can edit the code and add functionality.
Please make sure <del>to add as well your OpenPetra.build.config file to the branch</del> (if you have one) and create the Database with nant. (without those steps the server won't start) (see also [[Setup_of_Development_environment#initial_steps]])
 
--[[User:Pokorra|Pokorra]] 07:31, 16 March 2012 (UTC) Do NOT add your OpenPetra.build.config file to your public branch at Launchpad, since it may contain your database password etc. Also it will cause problems with merging your branch into trunk. If you have a private branch, ie. it is on your own bazaar server, and it only contains adjusting changes for a production system, then you can call your config file OpenPetra.build.config.my and add it to that private branch.
 
= Commit added and modified files =
The Bazaar Explorer should look similar to this for your working tree:
[[File:BzrExplorer6.png|center|Explore trunk]]
 
This screen gives you access to operations like:
* Add: add new files
* Rename: rename files in the working tree control
* Commit: commit local changes to the repository.
** Please enter the Mantis numbers of the bugs you have fixed (in edit field '''Fixed bugs'''), in the format op:<mantis number>, eg. <code>op:123 op:124</code>
** it is recommended always to commit to the central repository, and to avoid local commits
[[File:BzrExplorer7.png|center|Commit]]
 
Alternatively, you can work with Tortoise Bazaar as well:
[[File:BzrTortoise.png|center|Tortoise Bazaar]]
 
= Rebase a branch / Merge from trunk =
You should rebase your branch regularly, so that the changes happening in trunk are flowing back into your branch.
 
You need to click on ''Merge'', and if there have been changes merged into your branch, you will need to ''Commit'' as well.
 
It is highly recommended to first commit all your own local changes, before doing a merge.
 
= Merge to trunk =
If you want your changes to be merged into the OpenPetra trunk, use the link '''Propose for merging''' on your Launchpad code page. It is recommended to have small branches for each feature that you want to go upstream. You will not be able to reuse a branch, after it has been merged into openpetra trunk, since we want to avoid criss cross merges etc.
 
Certain members of the core team with write permissions on trunk will switch to trunk, and then do a ''Merge'' from the branch. They will resolve conflicts if there are any, and do a ''Commit''.
 
= Resolve conflicts =
This example will show you how to resolve a conflict.
 
The situation: the file Gift.Importing.cs has been edited both in trunk and in the dev branch. We switch to the dev branch, and select Merge from bzr+ssh://bazaar@bzr.openpetra.org:2208/openpetra/trunk/
 
This is how it looks in Bazaar Explorer:
[[File:BzrExplorerUncommittedMergeWithConflicts.png|center|Uncommitted Merge with Conflicts]]
 
Now go in the menu to Bazaar > Work > Resolve Conflicts. You will get this screen:
[[File:BzrListConflicts.png|center|Bazaar list unresolved conflicts]]
 
If you have configured KDiff3 right, you should be able to double-click the conflict files and see them in KDiff3. This only works for files that have text conflicts. For files with content conflicts, you need to manually compare the .BASE and .THIS or .OTHER file with the current file.
 
In KDiff3, you have 3 columns:
[[File:Kdiff3.png|center|KDiff3 sample]]
 
 
*The left column (A) is the BASE version. This is the version before all changes happened, the common source of the branches.
*The center column (B) is the THIS version. This is the version that you have last had in your branch.
*The right column (C) is the OTHER version. This is the version coming from trunk, in our example.
*The file at the bottom is the resulting file. You can go through the conflicts, and select if you want to select the version from A, B, or C, or you can modify it yourself.
 
Make sure that the line end style is set to DOS (and not to UNIX).
 
You might also want to right click the conflicting file in the Explorer, and select the Log, this will you to see what happened to the file, and how the changes got into that file, by looking at the diff of each commit.
 
After you have fixed the bottom file, saved it and closed KDiff3, select "Mark as resolved" in the conflicts list window, when right-clicking the conflict file.
 
= Frequently asked questions =
Please go to [[Notes_about_Bazaar#Frequently_asked_questions]] to see our FAQ for bazaar.

Latest revision as of 04:35, 16 March 2023

We are not using Bazaar anymore, but Git.