Open CASCADE Technology
7.8.0
|
|
The purpose of this document is to provide a practical introduction to Git to OCCT developers who are not familiar with this tool and to facilitate the use of the official OCCT Git repository for code contribution to OCCT.
It can be useful to learn more about Git concepts and tools from a book a or manual. Many good books on Git can be found at https://git-scm.com/documentation
For the experienced Git users it can be enough to read sections 1 and 3 of this document to start working with the repository.
Familiarize yourselves with the Contribution Workflow document
that describes how Git is used for processing contributions to OCCT.
This and related documents are available at the Resources page of the OCCT development portal at https://dev.opencascade.org/index.php?q=home/resources.
URL of the official OCCT source code Git repository (accessed by SSH protocol) is:
gitolite@git.dev.opencascade.org:occt
or
ssh://gitolite@dev.opencascade.org/occt.git
The official repository contains:
The name specified in the user.name field in Git configuration should correspond to your login name on the OCCT development portal. This is important to clearly identify the authorship of commits. (The full real name can be used as well; in this case add the login username in parentheses.)
By default, contributors are allowed to push branches only with the names starting with CR (followed by the relevant Mantis issue ID). Possibility to work with other branches can be enabled by the Bugmaster on request.
The branch is created by the developer in his local repository when the development of a contribution starts. The branch for new developments is to be created from the current master. The branch for integration of patches or developments based on an obsolete version is created from a relevant tag or commit. The branch should be pushed to the official repo only when sharing with other people (for collaborative work or review / testing) is needed.
Rebasing the local branch to the current master is encouraged before the first submission to the official repository. If rebasing was needed after the branch is pushed to the official repo, the rebased branch should have a different name (use suffix).
Integration of contributions that have passed certification testing is made exclusively by the Bugmaster. Normally this is made by rebasing the contribution branch on the current master and squashing it into a single commit. This is made to have the master branch history plain and clean, following the general rule “one issue – one commit”. The description of the commit integrated to the master branch is taken from the Mantis issue (ID, 'Summary', followed by the information from 'Documentation' field if present).
In special cases when it is important to save the commits history in the branch (e.g. in case of a long-term development integration) it can be integrated by merge (no fast-forward).
The authorship of the contribution is respected by preserving the Author field of the commit when integrating. Branches are removed from the official repository when integrated to the master. The Bugmaster can also remove branches which have no commits during one-month period.
The Bugmaster may ask the developer (normally the one who produced the contribution) to rebase a branch on the current master, in the case if merge conflicts appear during integration.
The repository is tested to work with Git 1.7.6 and above. Avoid using versions below 1.7.1 as they are known to cause troubles.
Installation of Git for Windows (provided by MSysGit project) is required.
In addition, it is recommended to install TortoiseGit to work with Git on Windows. If you do not install TortoiseGit or any other GUI tool, you can use GitGui and Gitk GUI tools delivered with Git and available on all platforms.
Download Git for Windows distributive from https://git-for-windows.github.io/ During the installation:
Note that by default Git user interface is localized to the system default language. If you prefer to work with the English interface, remove or rename .msg localization file in subdirectories share/git-gui/lib/msgs and share/gitk/lib/msgs of the Git installation directory.
Before the first commit to the OCCT repository, make sure that your User Name in the Git configuration file (file .gitconfig in the $HOME directory) is equal to your username on the OCCT development portal.
Download TortoiseGit distributive from https://tortoisegit.org/download/. Launch the installation.
Complete the installation.
TortoiseGit integrates into Windows Explorer, thus it is possible to use context menu in Windows Explorer to access its functionality:
Note that if you have installed MSysGit or have Git installed in non-default path, on the first time you use TortoiseGit you may get the message demanding to define path to Git. In such case, click on Set MSysGit path button and add the path to git.exe and path to MigGW libraries in the Settings dialog.
Select Git->Config to add your user name and Email address to the local .gitconfig file
Optionally, you can set up TortoiseGit to use visual diff utility for SVG images used in OCCT documentation. 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:
.svg
<path_to_OCCT>\adm\svgdiff.bat %base %mine %bname %yname
We assume that Linux users have Git already installed and available in the PATH.
Make sure to configure Git so that the user name is equal to your username on the OCCT development portal, and set SafeCrLf option to true:
Access to the repository is granted to the users who have signed the Contributor License Agreement.
The repository is accessed by SSH protocol, thus you need to register your public SSH key on the development portal to get access to the repository.
SSH keys are used for secure authentication of the user when accessing the Git server. Private key is the one stored on the user workstation (optionally encrypted). Open (or public) key is stored in the user account page on the web site. When Git client accesses the remote repository through SSH, it uses this key pair to identify the user and acquire relevant access rights.
Normally when you have Git installed, you should have also SSH client available. On Unix/Linux it is installed by default in the system. On Windows it is typical to have several SSH clients installed; in particular they are included with Cygwin, Git, TortoiseGit.
It is highly recommended to use the tools that come with the chosen Git client for generation of SSH keys. Using incompatible tools (e.g. ssh-keygen.exe from Cygwin for code generation, and TortoiseGit GUI with a default Putty client for connection to server) may lead to authentication problems.
Use this option if you have installed TortoiseGit (or other GUI Git client on Windows) and have chosen “TortoisePLink” (or other Putty client) as SSH client during installation.
To generate the key with this client, run Puttygen (e.g. from Start menu -> TortoiseGit -> Puttygen), then click Generate and move mouse cursor over the blank area until the key is generated.
After the key is generated, you will see GUI controls to define the public key comment and / or specify the password for the private key protection. When done, save both the public and the private key to the files of your choice (make sure to store your private key in a secure place!).
Copy the public key as shown by Puttygen to the clipboard to add it in your account. Do not copy the Putty public key file content – it is formatted in a way not suitable for the web site.
Use this option if you work on Linux or if you have chosen “OpenSSH” as SSH client during installation of TortoiseGit (or other Windows tool).
Make sure that you have ssh and ssh-keygen commands in the path. On Windows, you might need to start Git Bash command prompt window.
Use the following command to generate SSH keys:
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.
The command will ask you where to store the keys. It is recommended to accept the default path $HOME/.ssh/id_rsa. 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.
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.
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/):
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).
GitGUI (standard GUI interface included with Git) provides the option to either generate the SSH key (if not present yet) or show the existing one. Click Help/Show SSH key and copy the public key content for adding to the user account page (see below).
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.
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.
Click Save to input the key to the system.
Note that a user can have several SSH keys. You can distinguish between these keys by the Title field ID; by default it is taken from SSH key comment. It is typical to use your e-mail address or workstation name for this field; no restrictions are set by the portal.
Note that some time (5-10 min) is needed for the system to update the configuration after the new key is added. After that time, you can try accessing Git.
To start working with OCCT source repository, you need to create its clone in your local system. This cloned repository will manage your working copy of the sources and provide you the means to exchange code between your clone and the origin.
In most cases it is sufficient to have one clone of the repository; your working copy will be updated automatically by Git when you switch branches.
The typical development cycle for an issue is as follows:
You can switch to another branch at any moment (unless you have some uncommitted changes in the working copy) and return back to the branch when necessary (e.g. to take into account review remarks). Note that only the sources that are different between the switched branches will be modified, thus required recompilation should be reasonably small in most cases.
Clone the official OCCT repository in one of following ways:
where <path> is the path to the new folder which will be created for the repository.
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.
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 $HOME/.ssh/known_hosts file.
You need to create a branch when you are going to start development of a new change, apply a patch, etc. It is recommended to fetch updates from the remote repository before this operation, to make sure you work with the up-to-date version.
Create a branch from the current master branch unless you need to base your development on a particular version or revision.
In the console:
In TortoiseGit:
Check option Switch to new branch if you are going to start working with the newly created branch immediately.
If you need to switch to another branch, use Git command checkout for that. In the console:
In TortoiseGit: right-click in the explorer window and select in the context menu TortoiseGit -> Switch/Checkout.
Note that in order to work with the branch locally you need to set option Create new branch when you checkout the branch from the remote repository for the first time. Option Track stores association between the local branch and the original branch in a remote repository.
Commit your changes locally as soon as a stable status of the work is reached. Make sure to review carefully the committed changes beforehand to avoid unintentional commit of a wrong code.
Option -a tells the command to automatically include (stage) files that have been modified or deleted, but it will omit the new files that might have been added by you. To commit such new files, you must add (stage) them before commit command.
To find new unstaged files and them to commit, use commands:
Unstaged files will be shown if you check the option ‘Show Unversioned Files’. Double-click on each modified file to see the changes to be committed (as a difference vs. the base version).
When the code developed in your local branch is ready for review, or you need to share it with others, push your local changes to the remote repository.
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:
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, and enter the name of the branch to be removed in Remote field:
Maintain your repository synchronized with the remote one and clean unnecessary stuff regularly.
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.
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.
This operation is required in particular to update your local master branch when the remote master changes.
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.
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.
Select All branches check-box to view all branches. Right-click on the branch you want to delete and select Delete item in the context menu.
Note that many functions described above can be accessed from the Log View, which is a very convenient tool to visualize and manage branches.
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:
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.
At some moments you might need to rebase your branch on the latest version of the master.
We recommend rebasing before the first submission of the branch for review or when the master has diverged substantially from your branch.
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.
To rebase your branch into a single commit, you need to do the following:
The changes made in the branch can be reviewed without direct access to Git, using GitWeb interface:
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.
Use of TortoiseGit is recommended for convenient code review: