#Bitbucket
Bitbucket is Atlassian's Git solution with Jira integration.
#Key Features
| Feature | Description |
|---|---|
| Repositories | Code hosting |
| Pull Requests | Code review |
| Pipelines | CI/CD |
| Jira Integration | Issue linking |
| Trello | Board integration |
#Bitbucket Pipelines
yaml
1# bitbucket-pipelines.yml
2image: node:20
3
4pipelines:
5 default:
6 - step:
7 name: Build and Test
8 caches:
9 - node
10 script:
11 - npm ci
12 - npm test
13 - npm run build
14 artifacts:
15 - dist/**
16
17 branches:
18 main:
19 - step:
20 name: Deploy Production
21 deployment: production
22 script:
23 - echo "Deploying..."#Best For
- Teams using Jira
- Atlassian ecosystem users
- Private repositories (free tier)
[!TIP] Pro Tip: Bitbucket shines when integrated with Jira for full traceability!