0028654: Existed tool (gendoc) for generation documentation does not take into accoun...
[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,
3f812249 69 following the general rule “one issue -- one commit”.
bf62b306 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
d6b4d3d0 127@figure{OCCT_GitGuide_V2_image005.png,"",100}
bf62b306 128
dd21889e 129
bf62b306 130
131 Note that if you have installed MSysGit or have Git installed in non-default path,
132 on the first time you use TortoiseGit you may get the message demanding to define path to Git.
133 In such case, click on **Set MSysGit path** button and add the path to git.exe
134 and path to MigGW libraries in the Settings dialog.
135
136 * After the installation select Start -> Programs -> TortoiseGit Settings to configure TortoiseGit.
137
4ee1bdf4 138 Select Git->Config to add your user name and Email address to the local <i>.gitconfig</i> file
bf62b306 139
d6b4d3d0 140 @figure{OCCT_GitGuide_V2_image006.png,"",320}
bf62b306 141
142@subsection occt_gitguide_2_2 Linux platform
143
4ee1bdf4 144 We assume that Linux users have Git already installed and available in the *PATH*.
bf62b306 145
146 Make sure to configure Git so that the user name is equal to your username
147 on the OCCT development portal, and set SafeCrLf option to true:
148
149~~~~~
150 > git config --global user.name "Your User Name"
151 > git config --global user.email your@mail.address
152 > git config --global your@mail.address
153~~~~~
154
155@section occt_gitguide_3 Getting access to the repository
156
157@subsection occt_gitguide_3_1 Prerequisites
158
159 Access to the repository is granted to the users who have signed the Contributor License Agreement.
160
161 The repository is accessed by SSH protocol, thus you need to register your public SSH key
162 on the development portal to get access to the repository.
163
164 SSH keys are used for secure authentication of the user when accessing the Git server.
165 Private key is the one stored on the user workstation (optionally encrypted).
166 Open (or public) key is stored in the user account page on the web site.
167 When Git client accesses the remote repository through SSH,
168 it uses this key pair to identify the user and acquire relevant access rights.
169
170 Normally when you have Git installed, you should have also SSH client available.
171 On Unix/Linux it is installed by default in the system.
172 On Windows it is typical to have several SSH clients installed;
173 in particular they are included with Cygwin, Git, TortoiseGit.
174
175 It is highly recommended to use the tools that come
176 with the chosen Git client for generation of SSH keys.
4ee1bdf4 177 Using incompatible tools (e.g. *ssh-keygen.exe* from Cygwin for code generation,
bf62b306 178 and TortoiseGit GUI with a default Putty client for connection to server)
179 may lead to authentication problems.
180
181@subsection occt_gitguide_3_2 How to generate a key
182
183@subsubsection occt_gitguide_3_2_1 Generating key with Putty
184
185 Use this option if you have installed TortoiseGit (or other GUI Git client on Windows)
186 and have chosen “TortoisePLink” (or other Putty client) as SSH client during installation.
187
4ee1bdf4 188 To generate the key with this client, run **Puttygen** (e.g. from Start menu -> TortoiseGit -> Puttygen),
189 then click **Generate** and move mouse cursor over the blank area until the key is generated.
bf62b306 190
d6b4d3d0 191@figure{OCCT_GitGuide_V2_image007.png,"Putty key generator",320}
bf62b306 192
193 After the key is generated, you will see GUI controls to define the public key comment
194 and / or specify the password for the private key protection.
195 When done, save both the public and the private key to the files of your choice
196 (make sure to store your private key in a secure place!).
197
198 Copy the public key as shown by Puttygen to the clipboard to add it in your account.
199 Do not copy the Putty public key file content -- it is formatted in a way not suitable for the web site.
200
201@subsubsection occt_gitguide_3_2_2 Generating key with command-line tools
202
203 Use this option if you work on Linux or if you have chosen “OpenSSH” as SSH client
204 during installation of TortoiseGit (or other Windows tool).
205
206 Make sure that you have *ssh* and *ssh-keygen* commands in the path.
4ee1bdf4 207 On Windows, you might need to start **Git Bash** command prompt window.
bf62b306 208
209 Use the following command to generate SSH keys:
210~~~~~
211 > ssh-keygen -t rsa -C "your@mail.address"
212~~~~~
213
214 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.
215
4ee1bdf4 216 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 217
218 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.
219
220 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/):
221
3f812249 222 * *id_rsa* -- private key
223 * *id_rsa.pub* -- public key
bf62b306 224
225 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).
226
227@subsubsection occt_gitguide_3_2_3 Generating key with Git GUI
228
229 GitGUI (standard GUI interface included with Git) provides the option
230 to either generate the SSH key (if not present yet) or show the existing one.
231 Click Help/Show SSH key and copy the public key content for adding to the user account page (see below).
232
233@subsection occt_gitguide_3_3 Adding public key in your account
234
dd21889e 235Log 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 236
dd21889e 237Click 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 238
239Click **Save** to input the key to the system.
dd21889e 240
bf62b306 241 Note that a user can have several SSH keys.
242 You can distinguish between these keys by the Title field ID; by default it is taken from SSH key comment.
243 It is typical to use your e-mail address or workstation name for this field; no restrictions are set by the portal.
dd21889e 244
bf62b306 245
246 Please note that some time (5-10 min) is needed for the system
247 to update the configuration after the new key is added.
248 After that time, you can try accessing Git.
249
4ee1bdf4 250@section occt_gitguide_4 Work with repository: developer operations
bf62b306 251
252@subsection occt_gitguide_4_1 General workflow
253
254 To start working with OCCT source repository, you need to create its clone in your local system.
255 This cloned repository will manage your working copy of the sources
256 and provide you the means to exchange code between your clone and the origin.
257
258 In most cases it is sufficient to have one clone of the repository;
259 your working copy will be updated automatically by Git when you switch branches.
260
261 The typical development cycle for an issue is as follows:
262
263 * Create a new branch for your development, basing on the selected version of the sources
264 (usually the current master) and switch your working copy to it
d3013f55 265 * Develop and test your change.
bf62b306 266 * Do as many commits in your branch as you feel convenient;
267 the general recommendation is to commit every stable state (even incomplete), to record the history of your development.
268 * 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)
269 * Before the first push, rebase your local branch on the latest master;
270 consider collapsing the history in one commit unless you think the history of your commits is interesting for others.
271 Make sure to provide a good commit message.
272 * Do not amend the commits that have been already pushed in the remote repository,
273 If you need to rebase your branch, commit the rebased branch under a different name, and remove the old branch.
274
275 You can switch to another branch at any moment
276 (unless you have some uncommitted changes in the working copy)
277 and return back to the branch when necessary (e.g. to take into account review remarks).
278 Note that only the sources that are different between the switched branches will be modified,
279 thus required recompilation should be reasonably small in most cases.
280
281@subsection occt_gitguide_4_2 Cloning official repository
282
283 Clone the official OCCT repository in one of following ways:
284
285 * From command line by command:
286
287~~~~~
288 > git clone gitolite@git.dev.opencascade.org:occt <path>
289~~~~~
290
ba06f8bb 291 where <i>\<path\></i> is the path to the new folder which will be created for the repository.
bf62b306 292
dd21889e 293 * In TortoiseGit: create a new folder, open it and right-click in the Explorer window, then choose **Git Clone** in the context menu:
bf62b306 294
d6b4d3d0 295@figure{OCCT_GitGuide_V2_image009.png,"",320}
bf62b306 296
dd21889e 297 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 298
dd21889e 299 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 300
301@subsection occt_gitguide_4_3 Branch creation
302
303 You need to create a branch when you are going to start development of a new change,
304 apply a patch, etc. It is recommended to fetch updates from the remote repository
305 before this operation, to make sure you work with the up-to-date version.
306
307 Create a branch from the current master branch unless you need to base your development on a particular version or revision.
308
309In the console:
310
311~~~~~
312 > git checkout -b CR12345 origin/master
313~~~~~
314
315In TortoiseGit:
316 * Go to the local copy of the repository.
dd21889e 317 * Right-click in the Explorer window, then choose **Git Create Branch**.
dd21889e 318 * Select **Base On** Branch *remotes/origin/master*.
bf62b306 319
d6b4d3d0 320@figure{OCCT_GitGuide_V2_image012.png,"",320}
bf62b306 321
dd21889e 322 Check option **Switch to new branch** if you are going to start working with the newly created branch immediately.
bf62b306 323
324@subsection occt_gitguide_4_4 Branch switching
325
326 If you need to switch to another branch, use Git command checkout for that.
327 In the console:
328
329~~~~~
330 > git checkout CR12345
331~~~~~
332
dd21889e 333 In TortoiseGit: right-click in the explorer window and select in the context menu **TortoiseGit** -> **Switch/Checkout**.
bf62b306 334
d6b4d3d0 335@figure{OCCT_GitGuide_V2_image013.png,"",320}
bf62b306 336
337 Note that in order to work with the branch locally you need to set option
dd21889e 338 **Create new branch** when you checkout the branch from the remote repository for the first time.
339 Option **Track** stores association between the local branch and the original branch in a remote repository.
bf62b306 340
341@subsection occt_gitguide_4_5 Committing branch changes
342
343 Commit your changes locally as soon as a stable status of the work is reached.
344 Make sure to review carefully the committed changes beforehand to avoid unintentional commit of a wrong code.
345
346 * In the console:
347
348~~~~~
349 > git diff
350
351 > git commit -a -m "Write meaningful commit message here"
352~~~~~
353
3f812249 354 Option -a tells the command to automatically include (stage) files
bf62b306 355 that have been modified or deleted, but it will omit the new files that might have been added by you.
356 To commit such new files, you must add (stage) them before commit command.
357
358 To find new unstaged files and them to commit, use commands:
359
360~~~~~
361 > git status -s
362 ?? file1.hxx
363 ?? file2.cxx
364 > git add file1.hxx file2.cxx
365~~~~~
366
dd21889e 367 * In TortoiseGit: right-click in the explorer window and select in the context menu <b>Git Commit -> CR…</b>:
bf62b306 368
d6b4d3d0 369@figure{OCCT_GitGuide_V2_image014.png,"",320}
bf62b306 370
371 Unstaged files will be shown if you check the option ‘Show Unversioned Files’.
64215435 372 Double-click on each modified file to see the changes to be committed (as a difference vs. the base version).
bf62b306 373
374@subsection occt_gitguide_4_6 Pushing branch to the remote repository
375
376 When the code developed in your local branch is ready for review,
377 or you need to share it with others, push your local changes to the remote repository.
378
379 * In the console:
380
381~~~~~
382 > git push "origin" CR12345:CR12345
383~~~~~
384
dd21889e 385 * In TortoiseGit: right-click in the explorer window and select in the context menu, TortoiseGit -> **Push**
bf62b306 386
d6b4d3d0 387@figure{OCCT_GitGuide_V2_image015.png,"",320}
bf62b306 388
dd21889e 389Note 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:
390 * 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.
391 * 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 392
d6b4d3d0 393@figure{OCCT_GitGuide_V2_image016.png,"",320}
bf62b306 394
dd21889e 395 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,
396 and enter the name of the branch to be removed in **Remote** field:
bf62b306 397
dd21889e 398 * 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 399
400@subsection occt_gitguide_4_7 Synchronizing with remote repository
401
402 Maintain your repository synchronized with the remote one and clean unnecessary stuff regularly.
dd21889e 403
404 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 405
406 * In the console:
bf62b306 407~~~~~
408 > git fetch --prune
409~~~~~
410
dd21889e 411 * In TortoiseGit: right-click in the explorer window and select in the context menu **TortoiseGit** -> **Fetch**. Check in **Prune** check-box.
bf62b306 412
d6b4d3d0 413@figure{OCCT_GitGuide_V2_image018.png,"",320}
bf62b306 414
dd21889e 415 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.
416
bf62b306 417 This operation is required in particular to update your local master branch when the remote master changes.
418
419 * In console:
420~~~~~
421 > git pull
422~~~~~
dd21889e 423
424 * In TortoiseGit: right-click in the explorer window and select in the context menu **TortoiseGit** -> **Pull**.
bf62b306 425
d6b4d3d0 426@figure{OCCT_GitGuide_V2_image019.png,"",320}
bf62b306 427
3f812249 428Note 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 429
dd21889e 430Remove 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 431
432 * In the console:
433~~~~~
434 > git branch -d CR12345
435~~~~~
436
dd21889e 437 * In TortoiseGit: right-click in the explorer window and select in the context menu **TortoiseGit** -> **Git Show Log**.
bf62b306 438
d6b4d3d0 439@figure{OCCT_GitGuide_V2_image020.png,"",420}
bf62b306 440
dd21889e 441 Select **All branches** check-box to view all branches.
442 Right-click on the branch you want to delete and select **Delete** item in the context menu.
bf62b306 443
dd21889e 444Note that many functions described above can be accessed from the Log View, which is a very convenient tool to visualize and manage branches.
bf62b306 445
446@subsection occt_gitguide_4_8 Applying a fix made on older version of OCCT
447
dd21889e 448If 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:
449 * 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.
450 * Find a tag or a commit corresponding to this version in the Git history log of the master branch.
bf62b306 451 * 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**.
452
d6b4d3d0 453@figure{OCCT_GitGuide_V2_image021.png,"",320}
bf62b306 454
dd21889e 455 * Check option **Switch to the new branch** to start working within the new branch immediately, or switch to it separately afterwards.
bf62b306 456 * Put your fix in the working copy, build and check that it works, then commit to the branch.
dd21889e 457 * 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 458
d6b4d3d0 459@figure{OCCT_GitGuide_V2_image022.png,"",320}
bf62b306 460
dd21889e 461Note 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 462
463@subsection occt_gitguide_4_9 Rebasing with history clean-up
464
dd21889e 465At some moments you might need to rebase your branch on the latest version of the master.
bf62b306 466
dd21889e 467We recommend rebasing before the first submission of the branch for review or when the master has diverged substantially from your branch.
bf62b306 468
dd21889e 469Rebasing 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 470
dd21889e 471To rebase your branch into a single commit, you need to do the following:
bf62b306 472 * Switch to your branch (e.g. “CR12345”)
4ee1bdf4 473 * 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 474 * 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.
475
d6b4d3d0 476@figure{OCCT_GitGuide_V2_image023.png,"",320}
bf62b306 477
bf62b306 478 * Click **Start**.
dd21889e 479 * 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 480
d6b4d3d0 481@figure{OCCT_GitGuide_V2_image024.png,"",320}
bf62b306 482
483 * 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**.
484
d6b4d3d0 485@figure{OCCT_GitGuide_V2_image025.png,"",320}
bf62b306 486
487@section occt_gitguide_5 Work with repository: Reviewer operations
488
489@subsection occt_gitguide_5_1 Review branch changes using GitWeb
490
491 The changes made in the branch can be reviewed without direct access to Git, using GitWeb interface:
492
493 * Open GitWeb in your web browser: http://git.dev.opencascade.org/gitweb/?p=occt.git
dd21889e 494 * Locate the branch you want to review among **heads** (click ‘…’ at the bottom of the page to see the full list).
495 * Click **log** (or **shortlog**) to see the history of the branch.
bf62b306 496
dd21889e 497 **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 498
dd21889e 499 * Click **commitdiff** on each log entry to review the changes (highlighted with color format).
bf62b306 500
501@subsection occt_gitguide_5_2 Review branch changes with TortoiseGit
502
503 Use of TortoiseGit is recommended for convenient code review:
504
67d7f07f 505 * Fetch the changes from the remote repository as described in @ref occt_gitguide_4_7 "Synchronizing with remote repository" section.
dd21889e 506 * Right-click on the repository, choose **TortoiseGit** -> **Show** log;
bf62b306 507 * Locate the remote branch you need to review;
dd21889e 508 * 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.
509 * 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 510
d6b4d3d0 511@figure{OCCT_GitGuide_V2_image026.png,"",320}
512
bf62b306 513