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.

Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 4 Next »

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. Launch Git Bash.
  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.

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 to the folder where you have cloned the Bitbucket repository.
  2. Launch Git Bash.
  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>"


  • No labels