Create Bitbucket CI/CD Pipeline

Learn how to create a Bitbucket pipeline that integrates and deploys continuously to AWS Elastic Beanstalk.

Import files into the Bitbucket repo

Let’s bring our Bitbucket repo and then merge our previous work into it.

  1. In the terminal below, pull the Bitbucket repo using the command you saved before with the Bitbucket access token. It will look like this command:
Press + to interact
git clone https://x-token-auth:<ADD_YOUR_TOKEN>@bitbucket.org/<ADD_YOUR_BITBUCKET_USERNAME>/educative-course-bitbucket-pipeline.git
  1. Now, bring the previous work on Symfony into the terminal below.

  2. Run the command below and for the Username for 'https://github.com': prompt, enter $GITHUB_USERNAME.

Press + to interact
git clone --branch development https://@github.com/$GITHUB_USERNAME/educative-course-github-pipeline.git
...