Document toolboxDocument toolbox

A new version of Qualitia Automation Studio for Web and Mobile 7.2.x is now available. We highly recommend you upgrade. Find more details here.

Cloning a Repository

After you create a repository in Bitbucket, you must clone it on your local system to start working on it. 

To clone the repository:

  1. Log on to Windows machine where you have installed Qualitia Automation Studio Client.
  2. Navigate to the folder where you want to clone the Bitbucket repository.
  3. Right-click and select the Git Bash Here option.
  4. Enter the following command and press Enter.

    $ git clone <Bitbucket repository URL>

    The repository will be cloned to your local system and you can now add Qualitia projects to this repository. 
    To get the correct URL, go to bitbucket.org > Select Repository Name > from the right-top corner, click Clone.

Initial Commit

After you clone the repository on your local system, it's time to add files into this repository and create initial commit.

To create initial commit:

  1. Navigate into the folder where you have cloned the Bitbucket repository.
  2. Right-click and select the Git Bash Here option.
  3. Enter the following commands one-by-one to create, add, commit a file into the Bitbucket repository.

    $ echo "Earth's Moon" >> locations.txt
    $ git add locations.txt
    $ git commit -m "<your comment>"


Not finding what you need?