~openerp-dev/openobject-doc/trunk

« back to all changes in this revision

Viewing changes to i18n/fr/source/contribute/bazaar_faq.rst

  • Committer: Antony Lesuisse
  • Date: 2010-03-05 16:46:40 UTC
  • Revision ID: al@openerp.com-20100305164640-9b7anc1t5ujha8lw
Merge doc into feature, before deletion of both features and doc. (odo)

Show diffs side-by-side

added added

removed removed

Lines of Context:
3
3
.. i18n: 
4
4
.. i18n: F.A.Q on Bazaar version control system
5
5
.. i18n: --------------------------------------
 
6
..
6
7
 
7
8
.. _bazaar-faq-link:
8
9
 
10
11
--------------------------------------
11
12
 
12
13
.. i18n: .. contents::
 
14
..
13
15
 
14
16
.. contents::
15
17
 
16
18
.. i18n: How to install bazaar ?
17
19
.. i18n: +++++++++++++++++++++++
 
20
..
18
21
 
19
22
How to install bazaar ?
20
23
+++++++++++++++++++++++
22
25
.. i18n: To install bazaar on any ubuntu distribution, you can use::
23
26
.. i18n: 
24
27
.. i18n:   apt-get install bzr
 
28
..
25
29
 
26
30
To install bazaar on any ubuntu distribution, you can use::
27
31
 
30
34
.. i18n: To work correctly, bzr version must be at least 1.3. Check it with the command::
31
35
.. i18n: 
32
36
.. i18n:   bzr --version
 
37
..
33
38
 
34
39
To work correctly, bzr version must be at least 1.3. Check it with the command::
35
40
 
36
41
  bzr --version
37
42
 
38
43
.. i18n: If you don't have at least 1.3 version, you can check this url: http://bazaar-vcs.org/Download
 
44
..
39
45
 
40
46
If you don't have at least 1.3 version, you can check this url: http://bazaar-vcs.org/Download
41
47
 
42
48
.. i18n: On debian, in any distribution, the 1.5 version is working, you can get it on
43
49
.. i18n: this url: http://backports.org/debian/pool/main/b/bzr/bzr_1.5-1~bpo40+1_i386.deb
 
50
..
44
51
 
45
52
On debian, in any distribution, the 1.5 version is working, you can get it on
46
53
this url: http://backports.org/debian/pool/main/b/bzr/bzr_1.5-1~bpo40+1_i386.deb
47
54
 
48
55
.. i18n: How to create a login on launchpad ?
49
56
.. i18n: ++++++++++++++++++++++++++++++++++++
 
57
..
50
58
 
51
59
How to create a login on launchpad ?
52
60
++++++++++++++++++++++++++++++++++++
53
61
 
54
62
.. i18n: Before you can commit on launchpad, you need to create a login.
 
63
..
55
64
 
56
65
Before you can commit on launchpad, you need to create a login.
57
66
 
58
67
.. i18n: Go to: https://launchpad.net --> log in / register on top right.
 
68
..
59
69
 
60
70
Go to: https://launchpad.net --> log in / register on top right.
61
71
 
62
72
.. i18n: You enter your e-mail address and you wait for an e-mail which will guide you trough the process needed to create your login.
 
73
..
63
74
 
64
75
You enter your e-mail address and you wait for an e-mail which will guide you trough the process needed to create your login.
65
76
 
66
77
.. i18n: This login is only needed if you intend to commit on bazaar on openerp-commiter or on your own branch.
 
78
..
67
79
 
68
80
This login is only needed if you intend to commit on bazaar on openerp-commiter or on your own branch.
69
81
 
70
82
.. i18n: How to commit ?
71
83
.. i18n: +++++++++++++++
 
84
..
72
85
 
73
86
How to commit ?
74
87
+++++++++++++++
76
89
.. i18n: Once your login is created, you need to create some ssh keys and insert them on
77
90
.. i18n: your login page (see create ssh keys on the left). These ssh keys are needed to
78
91
.. i18n: commit.
 
92
..
79
93
 
80
94
Once your login is created, you need to create some ssh keys and insert them on
81
95
your login page (see create ssh keys on the left). These ssh keys are needed to
83
97
 
84
98
.. i18n: I advice you to follow these instructions to complete the creation of your
85
99
.. i18n: ssh keys: https://help.launchpad.net/YourAccount/CreatingAnSSHKeyPair
 
100
..
86
101
 
87
102
I advice you to follow these instructions to complete the creation of your
88
103
ssh keys: https://help.launchpad.net/YourAccount/CreatingAnSSHKeyPair
89
104
 
90
105
.. i18n: How to use Bazaar ?
91
106
.. i18n: +++++++++++++++++++
 
107
..
92
108
 
93
109
How to use Bazaar ?
94
110
+++++++++++++++++++
95
111
 
96
112
.. i18n: There are two ways to work on bzr. Either, you make a checkout, either you create a local branch.
 
113
..
97
114
 
98
115
There are two ways to work on bzr. Either, you make a checkout, either you create a local branch.
99
116
 
102
119
.. i18n:   bzr co lp:~openerp/openobject-addons/trunk -- to make a checkout
103
120
.. i18n:   bzr up                                     -- to make an update
104
121
.. i18n:   bzr ci                                     -- to commit
 
122
..
105
123
 
106
124
Checkout method::
107
125
 
114
132
.. i18n:   bzr branch lp:~<url> <local dir>             -- to create a branch locally
115
133
.. i18n:   bzr pull                                     -- to update the branch
116
134
.. i18n:   bzr push lp:~<url>                           -- to include your changes in the remote branch
 
135
..
117
136
 
118
137
Creating a branch::
119
138
 
124
143
.. i18n: In any cases, when you experience some problems, you can do::
125
144
.. i18n: 
126
145
.. i18n:   bzr help
 
146
..
127
147
 
128
148
In any cases, when you experience some problems, you can do::
129
149
 
132
152
.. i18n: or ``bzr help <command>``. e.g.::
133
153
.. i18n: 
134
154
.. i18n:   bzr help branch
 
155
..
135
156
 
136
157
or ``bzr help <command>``. e.g.::
137
158
 
139
160
 
140
161
.. i18n: Some problems
141
162
.. i18n: +++++++++++++
 
163
..
142
164
 
143
165
Some problems
144
166
+++++++++++++
147
169
.. i18n: 
148
170
.. i18n:   bzr lp:~<url> 
149
171
.. i18n:   bzr: ERROR: Repository KnitPackRepository is not compatible with repository RemoteRepository
 
172
..
150
173
 
151
174
Checkout does not work, I have this message error::
152
175
 
154
177
  bzr: ERROR: Repository KnitPackRepository is not compatible with repository RemoteRepository
155
178
 
156
179
.. i18n: There are two ways to correct it.
 
180
..
157
181
 
158
182
There are two ways to correct it.
159
183
 
160
184
.. i18n: Instead of using ``bzr co lp:~<url>``, use ``bzr co bzr+ssh://<yourlaunchpad login>@bazaar.launchpad.net/~<url>``
 
185
..
161
186
 
162
187
Instead of using ``bzr co lp:~<url>``, use ``bzr co bzr+ssh://<yourlaunchpad login>@bazaar.launchpad.net/~<url>``
163
188
 
165
190
.. i18n: 
166
191
.. i18n:  bzr branch lp:~<url> 
167
192
.. i18n:  bzr reconfigure --checkout
 
193
..
168
194
 
169
195
you can check this url: https://bugs.launchpad.net/bzr/+bug/205579. Generally, you do::
170
196