Create Bitbucket CI/CD Pipeline
Learn how to create a Bitbucket pipeline that integrates and deploys continuously to AWS Elastic Beanstalk.
We'll cover the following...
Import files into the Bitbucket repo
Let’s bring our Bitbucket repo and then merge our previous work into it.
- 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
Now, bring the previous work on Symfony into the terminal below.
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
...