Search⌘ K
AI Features

Create Bitbucket CI/CD Pipeline

Explore how to import existing project files into a Bitbucket repository and configure a CI/CD pipeline. Learn to automate build, test, and deployment processes that deploy code changes seamlessly to AWS Elastic Beanstalk, ensuring continuous delivery of web applications.

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:
Javascript (babel-node)
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.

Shell
git clone --branch development https://@github.com/$GITHUB_USERNAME/educative-course-github-pipeline.git
...