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