0026964: Merge OCAF white-papers into OCAF user's guide
[occt.git] / dox / dev_guides / git_guide / git_guide.md
CommitLineData
ba06f8bb 1Guide to installing and using Git for OCCT development {#occt_dev_guides__git_guide}
bf62b306 2=================================
3
4@tableofcontents
5
6@section occt_gitguide_1 Overview
7
8@subsection occt_gitguide_1_1 Purpose
9
10 The purpose of this document is to provide a practical introduction to Git
11 to OCCT developers who are not familiar with this tool
12 and to facilitate the use of the official OCCT Git repository for code contribution to OCCT.
13
14 Reading this document does not exempt from the need to learn Git concepts and tools.
15 Please consult a book or manual describing Git to get acquainted with this tool.
16 Many good books on Git can be found at http://git-scm.com/documentation
17
18 For the experienced Git users it can be enough to read sections 1 and 3
19 of this document to start working with the repository.
20
21 Please make sure to get familiar with the Contribution Workflow document
22 that describes how Git is used for processing contributions to OCCT.
23
24 This and related documents are available at the Resources page
25 of the OCCT development portal at http://dev.opencascade.org/index.php?q=home/resources.
26
27@subsection occt_gitguide_1_2 Git URL
28
29 URL of the official OCCT source code Git repository (accessed by SSH protocol) is:
30
dd21889e 31 gitolite@git.dev.opencascade.org:occt
bf62b306 32
33 or
34
dd21889e 35 ssh://gitolite@dev.opencascade.org/occt.git
bf62b306 36
37@subsection occt_gitguide_1_3 Content
38
39The official repository contains:
40
41 * The current certified version of OCCT: the "master" branch. This branch is updated by the Bugmaster only. Official OCCT releases are marked by tags.
42 * Topic branches created by contributors to submit changes for review / testing or for collaborative development. The topic branches should be named by the pattern "CR12345" where 12345 is the ID of the relevant issue registered in Mantis (without leading zeroes), and "CR" stands for "Change Request". The name can have an additional postfix used if more than one branch was created for the same issue.
43 * Occasionally topic branches with non-standard names can be created by the Bugmaster for special needs.
44
45@subsection occt_gitguide_1_4 Short rules of use
46
47 The name specified in the user.name field in Git configuration should correspond
48 to your login name on the OCCT development portal.
49 This is important to clearly identify the authorship of commits.
50 (The full real name can be used as well; in this case add the login username in parentheses.)
51
52 By default, contributors are allowed to push branches only with the names starting with CR
53 (followed by the relevant Mantis issue ID).
54 Possibility to work with other branches can be enabled by the Bugmaster on request.
55
56 The branch is created by the developer in his local repository when the development of a contribution starts.
57 The branch for new developments is to be created from the current master.
58 The branch for integration of patches or developments based on an obsolete version
59 is created from a relevant tag or commit. The branch should be pushed to the official repo
60 only when sharing with other people (for collaborative work or review / testing) is needed.
61
62 Rebasing the local branch to the current master is encouraged before the first submission
63 to the official repository. If rebasing was needed after the branch is pushed to the official repo,
64 the rebased branch should have a different name (use suffix).
65
66 Integration of contributions that have passed certification testing is made exclusively by the Bugmaster.
67 Normally this is made by rebasing the contribution branch on the current master
68 and squashing it into a single commit. This is made to have the master branch history plain and clean,
69 following the general rule “one issue – one commit”.
70 The description of the commit integrated to the master branch is taken from the Mantis issue
71 (ID, 'Summary', followed by the information from 'Documentation' field if present).
72
73 In special cases when it is important to save the commits history in the branch
74 (e.g. in case of a long-term development integration) it can be integrated by merge (no fast-forward).
75
76 The authorship of the contribution is respected by preserving the Author field of the commit when integrating.
77 Branches are removed from the official repository when integrated to the master.
78 The Bugmaster can also remove branches which have no commits during one-month period.
79
80 The Bugmaster may ask the developer (normally the one who produced the contribution)
81 to rebase a branch on the current master, in the case if merge conflicts appear during integration.
82
83@subsection occt_gitguide_1_5 Version of Git
84
85 The repository is tested to work with Git 1.7.6 to 1.7.9.
86 Please do not use versions below 1.7.1 as they are known to cause troubles.
87
88@section occt_gitguide_2 Installing Tools for Work with Git
89
90@subsection occt_gitguide_2_1 Windows platform
91
92 Installation of Git for Windows (provided by MSysGit project) is required.
93
94 In addition, it is recommended to install TortoiseGit to work with Git on Windows.
95 If you do not install TortoiseGit or any other GUI tool,
96 you can use GitGui and Gitk GUI tools delivered with Git and available on all platforms.
97
98@subsubsection occt_gitguide_2_1_1 Installation of Git for Windows
99
9d99d3c1 100 Download Git for Windows distributive from https://git-for-windows.github.io/
bf62b306 101 During the installation:
102
9d99d3c1 103 * Check-in "Windows Explorer integration" options:
104 * "Git Bash Here";
105 * "Git GUI Here".
106 * To avoid a mess in your PATH, we recommend selecting "Run Git from Windows Prompt" in the environment settings dialog:
bf62b306 107 * In "Configuring the line ending conversions" dialog, select "Checkout Windows-style, commit Unix style endings".
bf62b306 108
109 Note that by default Git user interface is localized to the system default language.
110 If you prefer to work with the English interface, remove or rename .msg localization file
111 in subdirectories *share/git-gui/lib/msgs* and *share/gitk/lib/msgs* of the Git installation directory.
112
4ee1bdf4 113 Before the first commit to the OCCT repository, make sure that your User Name in the Git configuration file (file <i>.gitconfig</i> in the <i>$HOME</i> directory) is equal to your username on the OCCT development portal.
bf62b306 114
115@subsubsection occt_gitguide_2_1_2 Installation and configuration of TortoiseGit
116
117 Download TortoiseGit distributive from http://code.google.com/p/tortoisegit/downloads/list.
118 Launch the installation.
119
9d99d3c1 120 * Select your SSH client. Choose option
121 * "OpenSSH, Git default SSH Client" if you prefer to use command-line tools for SSH keys generation, or
122 * "TortoisePLink, coming from Putty, integrates with Windows better" if you prefer to use GUI tool (PuttyGen, see 3.2).
123 * Complete the installation.
bf62b306 124
9d99d3c1 125 TortoiseGit integrates into Windows Explorer, thus it is possible to use context menu in Windows Explorer to access its functionality:
dd21889e 126
bf62b306 127@image html OCCT_GitGuide_V2_image005.png
128@image latex OCCT_GitGuide_V2_image005.png
129
dd21889e 130
bf62b306 131
132 Note that if you have installed MSysGit or have Git installed in non-default path,
133 on the first time you use TortoiseGit you may get the message demanding to define path to Git.
134 In such case, click on **Set MSysGit path** button and add the path to git.exe
135 and path to MigGW libraries in the Settings dialog.
136
137 * After the installation select Start -> Programs -> TortoiseGit Settings to configure TortoiseGit.
138
4ee1bdf4 139 Select Git->Config to add your user name and Email address to the local <i>.gitconfig</i> file
bf62b306 140
141 @image html OCCT_GitGuide_V2_image006.png
142 @image latex OCCT_GitGuide_V2_image006.png
143
144@subsection occt_gitguide_2_2 Linux platform
145
4ee1bdf4 146 We assume that Linux users have Git already installed and available in the *PATH*.
bf62b306 147
148 Make sure to configure Git so that the user name is equal to your username
149 on the OCCT development portal, and set SafeCrLf option to true:
150
151~~~~~
152 > git config --global user.name "Your User Name"
153 > git config --global user.email your@mail.address
154 > git config --global your@mail.address
155~~~~~
156
157@section occt_gitguide_3 Getting access to the repository
158
159@subsection occt_gitguide_3_1 Prerequisites
160
161 Access to the repository is granted to the users who have signed the Contributor License Agreement.
162
163 The repository is accessed by SSH protocol, thus you need to register your public SSH key
164 on the development portal to get access to the repository.
165
166 SSH keys are used for secure authentication of the user when accessing the Git server.
167 Private key is the one stored on the user workstation (optionally encrypted).
168 Open (or public) key is stored in the user account page on the web site.
169 When Git client accesses the remote repository through SSH,
170 it uses this key pair to identify the user and acquire relevant access rights.
171
172 Normally when you have Git installed, you should have also SSH client available.
173 On Unix/Linux it is installed by default in the system.
174 On Windows it is typical to have several SSH clients installed;
175 in particular they are included with Cygwin, Git, TortoiseGit.
176
177 It is highly recommended to use the tools that come
178 with the chosen Git client for generation of SSH keys.
4ee1bdf4 179 Using incompatible tools (e.g. *ssh-keygen.exe* from Cygwin for code generation,
bf62b306 180 and TortoiseGit GUI with a default Putty client for connection to server)
181 may lead to authentication problems.
182
183@subsection occt_gitguide_3_2 How to generate a key
184
185@subsubsection occt_gitguide_3_2_1 Generating key with Putty
186
187 Use this option if you have installed TortoiseGit (or other GUI Git client on Windows)
188 and have chosen “TortoisePLink” (or other Putty client) as SSH client during installation.
189
4ee1bdf4 190 To generate the key with this client, run **Puttygen** (e.g. from Start menu -> TortoiseGit -> Puttygen),
191 then click **Generate** and move mouse cursor over the blank area until the key is generated.
bf62b306 192
193@image html OCCT_GitGuide_V2_image007.png "Putty key generator"
194@image latex OCCT_GitGuide_V2_image007.png "Putty key generator"
195
196 After the key is generated, you will see GUI controls to define the public key comment
197 and / or specify the password for the private key protection.
198 When done, save both the public and the private key to the files of your choice
199 (make sure to store your private key in a secure place!).
200
201 Copy the public key as shown by Puttygen to the clipboard to add it in your account.
202 Do not copy the Putty public key file content -- it is formatted in a way not suitable for the web site.
203
204@subsubsection occt_gitguide_3_2_2 Generating key with command-line tools
205
206 Use this option if you work on Linux or if you have chosen “OpenSSH” as SSH client
207 during installation of TortoiseGit (or other Windows tool).
208
209 Make sure that you have *ssh* and *ssh-keygen* commands in the path.
4ee1bdf4 210 On Windows, you might need to start **Git Bash** command prompt window.
bf62b306 211
212 Use the following command to generate SSH keys:
213~~~~~
214 > ssh-keygen -t rsa -C "your@mail.address"
215~~~~~
216
217 The last argument is an optional comment, which can be included with the public key and used to distinguish between different keys (if you have many). The common practice is to put here your mail address or workstation name.
218
4ee1bdf4 219 The command will ask you where to store the keys. It is recommended to accept the default path <i>$HOME/.ssh/id_rsa</i>. Just press **Enter** for that. You will be warned if a key is already present in the specified file; you can either overwrite it by the new one, or stop generation and use the old key.
bf62b306 220
221 If you want to be on the safe side, enter password to encrypt the private key. You will be asked to enter this password each time you use that key (e.g. access a remote Git repository), unless you use the tool that caches the key (like TortoiseGit). If you do not want to bother, enter an empty string.
222
223 On Windows, make sure to note the complete path to the generated files (the location of your $HOME might be not obvious). Two key files will be created in the specified location (by default in $HOME/.ssh/):
224
225 * *id_rsa* - private key
4ee1bdf4 226 * *id_rsa.pub* - public key
bf62b306 227
228 The content of the public key file (one text line) is the key to be added to the user account on the site (see below).
229
230@subsubsection occt_gitguide_3_2_3 Generating key with Git GUI
231
232 GitGUI (standard GUI interface included with Git) provides the option
233 to either generate the SSH key (if not present yet) or show the existing one.
234 Click Help/Show SSH key and copy the public key content for adding to the user account page (see below).
235
236@subsection occt_gitguide_3_3 Adding public key in your account
237
dd21889e 238Log in on the portal http://dev.opencascade.org and click on **My account** link to the right. If you have a Contributor status, you will see **SSH keys** tab to the right.
9d99d3c1 239
dd21889e 240Click on that tab, then click **Add a public key**, and paste the text of the public key (see above sections on how to generate the key) into the text box.
9d99d3c1 241
242Click **Save** to input the key to the system.
dd21889e 243
bf62b306 244 Note that a user can have several SSH keys.
245 You can distinguish between these keys by the Title field ID; by default it is taken from SSH key comment.
246 It is typical to use your e-mail address or workstation name for this field; no restrictions are set by the portal.
dd21889e 247
bf62b306 248
249 Please note that some time (5-10 min) is needed for the system
250 to update the configuration after the new key is added.
251 After that time, you can try accessing Git.
252
4ee1bdf4 253@section occt_gitguide_4 Work with repository: developer operations
bf62b306 254
255@subsection occt_gitguide_4_1 General workflow
256
257 To start working with OCCT source repository, you need to create its clone in your local system.
258 This cloned repository will manage your working copy of the sources
259 and provide you the means to exchange code between your clone and the origin.
260
261 In most cases it is sufficient to have one clone of the repository;
262 your working copy will be updated automatically by Git when you switch branches.
263
264 The typical development cycle for an issue is as follows:
265
266 * Create a new branch for your development, basing on the selected version of the sources
267 (usually the current master) and switch your working copy to it
268 * Develop and test your change. Note that for the first time, and after any changes
269 made in CDL files you will have to re-generate build scripts or Visual Studio projects using WOK.
270 * Do as many commits in your branch as you feel convenient;
271 the general recommendation is to commit every stable state (even incomplete), to record the history of your development.
272 * Push your branch to the repository when your development is complete or when you need to share it with other people (e.g. for review)
273 * Before the first push, rebase your local branch on the latest master;
274 consider collapsing the history in one commit unless you think the history of your commits is interesting for others.
275 Make sure to provide a good commit message.
276 * Do not amend the commits that have been already pushed in the remote repository,
277 If you need to rebase your branch, commit the rebased branch under a different name, and remove the old branch.
278
279 You can switch to another branch at any moment
280 (unless you have some uncommitted changes in the working copy)
281 and return back to the branch when necessary (e.g. to take into account review remarks).
282 Note that only the sources that are different between the switched branches will be modified,
283 thus required recompilation should be reasonably small in most cases.
284
285@subsection occt_gitguide_4_2 Cloning official repository
286
287 Clone the official OCCT repository in one of following ways:
288
289 * From command line by command:
290
291~~~~~
292 > git clone gitolite@git.dev.opencascade.org:occt <path>
293~~~~~
294
ba06f8bb 295 where <i>\<path\></i> is the path to the new folder which will be created for the repository.
bf62b306 296
dd21889e 297 * In TortoiseGit: create a new folder, open it and right-click in the Explorer window, then choose **Git Clone** in the context menu:
bf62b306 298
299@image html OCCT_GitGuide_V2_image009.png
300@image latex OCCT_GitGuide_V2_image009.png
301
dd21889e 302 If you have chosen Putty as SSH client during TortoiseGit installation, check the **Load Putty Key** option and specify the location of the private key file saved by PuttyGen (see 3.2.1). This shall be done for the first time only.
bf62b306 303
dd21889e 304 Note that on the first connection to the repository server you may be requested to enter a password for your private SSH key; further you can get a message that the authenticity of the host cannot be established and will be asked if you want to continue connecting or not. Choose **Yes** to continue. The host’s key will be stored in <i>$HOME/.ssh/known_hosts</i> file.
bf62b306 305
306@subsection occt_gitguide_4_3 Branch creation
307
308 You need to create a branch when you are going to start development of a new change,
309 apply a patch, etc. It is recommended to fetch updates from the remote repository
310 before this operation, to make sure you work with the up-to-date version.
311
312 Create a branch from the current master branch unless you need to base your development on a particular version or revision.
313
314In the console:
315
316~~~~~
317 > git checkout -b CR12345 origin/master
318~~~~~
319
320In TortoiseGit:
321 * Go to the local copy of the repository.
dd21889e 322 * Right-click in the Explorer window, then choose **Git Create Branch**.
dd21889e 323 * Select **Base On** Branch *remotes/origin/master*.
bf62b306 324
325@image html OCCT_GitGuide_V2_image012.png
326@image latex OCCT_GitGuide_V2_image012.png
327
dd21889e 328 Check option **Switch to new branch** if you are going to start working with the newly created branch immediately.
bf62b306 329
330@subsection occt_gitguide_4_4 Branch switching
331
332 If you need to switch to another branch, use Git command checkout for that.
333 In the console:
334
335~~~~~
336 > git checkout CR12345
337~~~~~
338
dd21889e 339 In TortoiseGit: right-click in the explorer window and select in the context menu **TortoiseGit** -> **Switch/Checkout**.
bf62b306 340
341@image html OCCT_GitGuide_V2_image013.png
342@image latex OCCT_GitGuide_V2_image013.png
343
344 Note that in order to work with the branch locally you need to set option
dd21889e 345 **Create new branch** when you checkout the branch from the remote repository for the first time.
346 Option **Track** stores association between the local branch and the original branch in a remote repository.
bf62b306 347
348@subsection occt_gitguide_4_5 Committing branch changes
349
350 Commit your changes locally as soon as a stable status of the work is reached.
351 Make sure to review carefully the committed changes beforehand to avoid unintentional commit of a wrong code.
352
353 * In the console:
354
355~~~~~
356 > git diff
357
358 > git commit -a -m "Write meaningful commit message here"
359~~~~~
360
361 Option –a tells the command to automatically include (stage) files
362 that have been modified or deleted, but it will omit the new files that might have been added by you.
363 To commit such new files, you must add (stage) them before commit command.
364
365 To find new unstaged files and them to commit, use commands:
366
367~~~~~
368 > git status -s
369 ?? file1.hxx
370 ?? file2.cxx
371 > git add file1.hxx file2.cxx
372~~~~~
373
dd21889e 374 * In TortoiseGit: right-click in the explorer window and select in the context menu <b>Git Commit -> CR…</b>:
bf62b306 375
376@image html OCCT_GitGuide_V2_image014.png
377@image latex OCCT_GitGuide_V2_image014.png
378
379 Unstaged files will be shown if you check the option ‘Show Unversioned Files’.
64215435 380 Double-click on each modified file to see the changes to be committed (as a difference vs. the base version).
bf62b306 381
382@subsection occt_gitguide_4_6 Pushing branch to the remote repository
383
384 When the code developed in your local branch is ready for review,
385 or you need to share it with others, push your local changes to the remote repository.
386
387 * In the console:
388
389~~~~~
390 > git push "origin" CR12345:CR12345
391~~~~~
392
dd21889e 393 * In TortoiseGit: right-click in the explorer window and select in the context menu, TortoiseGit -> **Push**
bf62b306 394
395@image html OCCT_GitGuide_V2_image015.png
396@image latex OCCT_GitGuide_V2_image015.png
397
dd21889e 398Note that Git forbids pushing a branch if the corresponding remote branch already exists and has some changes, which are not in the history of your local branch. This may happen in different situations:
399 * You have amended the last commit which is already in the remote repository. If you are sure that nobody else uses your branch, push again with **Force** option.
400 * You have rebased your branch, so that now it is completely different from the branch in the remote repository. In this case, push it under a different name (add a suffix):
bf62b306 401
402@image html OCCT_GitGuide_V2_image016.png
403@image latex OCCT_GitGuide_V2_image016.png
404
dd21889e 405 Then remove the original remote branch so that other people recognize that it has been replaced by the new one. For that, select TortoiseGit -> **Push** again, select an empty line for your local branch name,
406 and enter the name of the branch to be removed in **Remote** field:
bf62b306 407
dd21889e 408 * The other developer has committed some changes in the remote branch. In this case, **Pull** changes from the remote repository to have them merged with your version, and push your branch after it is successfully merged.
bf62b306 409
410@subsection occt_gitguide_4_7 Synchronizing with remote repository
411
412 Maintain your repository synchronized with the remote one and clean unnecessary stuff regularly.
dd21889e 413
414 Use Git command *fetch* with option *prune* to get the update of all branches from the remote repository and to clean your local repository from the remote branches that have been deleted.
bf62b306 415
416 * In the console:
bf62b306 417~~~~~
418 > git fetch --prune
419~~~~~
420
dd21889e 421 * In TortoiseGit: right-click in the explorer window and select in the context menu **TortoiseGit** -> **Fetch**. Check in **Prune** check-box.
bf62b306 422
423@image html OCCT_GitGuide_V2_image018.png
424@image latex OCCT_GitGuide_V2_image018.png
425
dd21889e 426 If the branch you are working with has been changed in the remote repository, use Git command *pull* to get the remote changes and merge them with your local branch.
427
bf62b306 428 This operation is required in particular to update your local master branch when the remote master changes.
429
430 * In console:
431~~~~~
432 > git pull
433~~~~~
dd21889e 434
435 * In TortoiseGit: right-click in the explorer window and select in the context menu **TortoiseGit** -> **Pull**.
bf62b306 436
437@image html OCCT_GitGuide_V2_image019.png
438@image latex OCCT_GitGuide_V2_image019.png
439
dd21889e 440Note that the local branches of your repository are the primary place, where your changes are stored until they get integrated to the official version of OCCT (master branch). The branches submitted to official repository are for collaborative work, review, and integration - that repository should not be used for long-term storage of incomplete changes.
bf62b306 441
dd21889e 442Remove the local branches that you do not need any more. Note that you cannot delete the current branch. It means that you need to switch to another one (e.g. master) if the branch you are going to delete is the current one.
bf62b306 443
444 * In the console:
445~~~~~
446 > git branch -d CR12345
447~~~~~
448
dd21889e 449 * In TortoiseGit: right-click in the explorer window and select in the context menu **TortoiseGit** -> **Git Show Log**.
bf62b306 450
451@image html OCCT_GitGuide_V2_image020.png
452@image latex OCCT_GitGuide_V2_image020.png
453
dd21889e 454 Select **All branches** check-box to view all branches.
455 Right-click on the branch you want to delete and select **Delete** item in the context menu.
bf62b306 456
dd21889e 457Note that many functions described above can be accessed from the Log View, which is a very convenient tool to visualize and manage branches.
bf62b306 458
459@subsection occt_gitguide_4_8 Applying a fix made on older version of OCCT
460
dd21889e 461If you have a fix made on a previous version of OCCT, perform the following sequence of operations to prepare it for testing and integration to the current development version:
462 * Identify the version of OCCT on which the fix has been made. In most cases, this will be an OCCT release, e.g. OCCT 6.7.0.
463 * Find a tag or a commit corresponding to this version in the Git history log of the master branch.
bf62b306 464 * Create a branch basing on this tag or commit. In TortoiseGit history log: right-click on the base commit, then select **Create branch at this version**.
465
466@image html OCCT_GitGuide_V2_image021.png
467@image latex OCCT_GitGuide_V2_image021.png
468
dd21889e 469 * Check option **Switch to the new branch** to start working within the new branch immediately, or switch to it separately afterwards.
bf62b306 470 * Put your fix in the working copy, build and check that it works, then commit to the branch.
dd21889e 471 * Rebase the branch on the current master. In TortoiseGit: right-click on the working directory, choose **TortoiseGit** -> **Rebase**, select *remotes/origin/master* as UpStream revision, and click **Start**:
bf62b306 472
473@image html OCCT_GitGuide_V2_image022.png
474@image latex OCCT_GitGuide_V2_image022.png
475
dd21889e 476Note that you can get some conflicts during rebase. To resolve them, double-click on each conflicted file (highlighted by red in the file list) to open visual merge tool. Switch between conflicting fragments by red arrows, and for each one decide if the code of one or both conflicting versions is to be taken.
bf62b306 477
478@subsection occt_gitguide_4_9 Rebasing with history clean-up
479
dd21889e 480At some moments you might need to rebase your branch on the latest version of the master.
bf62b306 481
dd21889e 482We recommend rebasing before the first submission of the branch for review or when the master has diverged substantially from your branch.
bf62b306 483
dd21889e 484Rebasing is a good occasion to clean-up the history of commits in the branch. Consider collapsing (squashing, in terms of Git) the history of your branch into a single commit unless you deem that having separate commits is important for your future work with the branch or its code reviewing. Git also allows changing the order of commits, edit commit contents and messages, etc.
bf62b306 485
dd21889e 486To rebase your branch into a single commit, you need to do the following:
bf62b306 487 * Switch to your branch (e.g. “CR12345”)
4ee1bdf4 488 * In TortoiseGit history log, select a branch to rebase on <i>(remotes/origin/master)</i> and in the context menu choose **Rebase “CR12345” onto this**.
dd21889e 489 * In the **Rebase** dialog, check **Squash All**. You can also change the order of commits and define for each commit whether it should be kept (**Pick**), edited, or just skipped.
490
bf62b306 491@image html OCCT_GitGuide_V2_image023.png
492@image latex OCCT_GitGuide_V2_image023.png
493
bf62b306 494 * Click **Start**.
dd21889e 495 * The process will stop if a conflict is detected. In that case, find files with status **Conflicted** in the list (marked by red), and double-click on them to resolve the conflict. When all conflicts are resolved, click **Continue**.
bf62b306 496
497@image html OCCT_GitGuide_V2_image024.png
498@image latex OCCT_GitGuide_V2_image024.png
499
500 * At the end of the process, edit the final commit message (it should start from the issue ID and a description from Mantis in the first line, followed by a summary of actual changes), and click **Commit**.
501
502@image html OCCT_GitGuide_V2_image025.png
503@image latex OCCT_GitGuide_V2_image025.png
504
505@section occt_gitguide_5 Work with repository: Reviewer operations
506
507@subsection occt_gitguide_5_1 Review branch changes using GitWeb
508
509 The changes made in the branch can be reviewed without direct access to Git, using GitWeb interface:
510
511 * Open GitWeb in your web browser: http://git.dev.opencascade.org/gitweb/?p=occt.git
dd21889e 512 * Locate the branch you want to review among **heads** (click ‘…’ at the bottom of the page to see the full list).
513 * Click **log** (or **shortlog**) to see the history of the branch.
bf62b306 514
dd21889e 515 **Note** that the branch can contain more than one commit, and you need to distinguish commits that belong to that branch (those to be reviewed) from the commits corresponding to the previous state of the master branch. Normally the first commit in the list that starts from the ID of the other issue indicates the branching point; commits above it are the ones to be reviewed.
bf62b306 516
dd21889e 517 * Click **commitdiff** on each log entry to review the changes (highlighted with color format).
bf62b306 518
519@subsection occt_gitguide_5_2 Review branch changes with TortoiseGit
520
521 Use of TortoiseGit is recommended for convenient code review:
522
dd21889e 523 * Fetch the changes from the remote repository as described in <a href="#occt_gitguide_4_7">Synchronizing with remote repository</a> section.
524 * Right-click on the repository, choose **TortoiseGit** -> **Show** log;
bf62b306 525 * Locate the remote branch you need to review;
dd21889e 526 * To review commits one-by-one, select each commit in the log. The list of changed files is shown at the bottom of the window; double-click on the file will open visual compare tool.
527 * To review all changes made in the branch at once, or to compare two arbitrary revisions, select the corresponding commits in the log (e.g. the last commit in the branch and the branching point), ight-click for the context menu, and choose **Compare revisions**.
bf62b306 528
529@image html OCCT_GitGuide_V2_image026.png
530@image latex OCCT_GitGuide_V2_image026.png
531