Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  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.

    Code Block
    $ 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.

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