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 9 Next »

After you clone the repository and completed initial commit, you can now add the your Qualitia projects to Bitbucket repository. You can enter following commands using Git Bash to add your project (with artifacts like Tasks and Test cases) to the bitbucket repository.

Each project added to the Bitbucket repository is treated as a separate branch. This makes tracking changes made to Qualitia artifacts easier.

The project, which you are adding to Bitbucket repository, should have at least one task and one test case. Empty projects cannot be added to the Bitbucket repository. This is a one-time activity and has to be performed for all the existing Qualitia projects.

To add Qualitia Project to the Bitbucket repository:

  1. Navigate to the folder where you have cloned the repository.
  2. Move your existing project folder (<ProjectName>_projectdb) to this location.
  3. Launch Git Bash.
  4. To create separate branch in the Bitbucket repository to store the project, enter the following command.

    $ git branch <project name>
  5. To checkout this newly created branch on the local system, enter the following command.

    $ git checkout <project name>
  6. To add projects artifacts into the bitbucket repository, enter the following commands:

    $ git add <project name>_projectdb/Tasks/
    $ git add <project name>_projectdb/TestCases/
  7. After you add project artifacts, commit and push the changes to the repository adding appropriate comments.

    $ git commit -m '<project name> <your comment>'
    $ git push --set-upstream origin <project name>
  8. Now copy the parent directory path in which you have checked-out the project and set it as Qualitia ProjectPath (in Configuration Setting).


  • No labels