Document toolboxDocument toolbox

Installations and Configurations

GIT Client Installation

Bitbucket is a version control system. You can use Bitbucket to store and manage your Qualitia projects. Before you start working with Bitbucket from Qualitia, you need to prepare your Windows computer.

To install Git client, on your Windows machine:


Update Bitbucket Configuration File

After you install git client, you must add Bitbucket user name and email into the configuration file using command line interface (Git Bash).

To add user details:

  1. Launch Git Bash.
  2. To add bitbucket username, enter the following command and press Enter.
    Replace John Doe with your Bitbucket username.

    $ git config --global user.name "johndoe"
  3. To add bitbucket email of the user, enter the following command and press Enter.
    Replace email with your email configured with Bitbucket account.

    $ git config --global user.email "John.Doe@yourdomain.com"