Gitpod for Bitbucket 🚀
Jul 2, 2020
Today, we’re excited to bring you instant developer environments for all Bitbucket projects.
Simply type gitpod.io/#
in front of any Bitbucket repository URL, and get a fully prebuilt and ready-to-code dev environment in seconds.
Getting started with Gitpod for Bitbucket
Starting a fresh dev environment for a Bitbucket project works just as with GitLab and GitHub: Simply prefix your Bitbucket project URL with gitpod.io/#
.
For example, you could try opening this Spring PetClinic (Java) repository in Gitpod:
https://gitpod.io/#https://bitbucket.org/gitpod/spring-petclinic
For more convenience, you can also install Gitpod’s browser extension (for Chrome and Firefox), which will add a Gitpod
button to all Bitbucket projects or alternatively use our browser bookmarklet.
Gitpod also supports other types of Bitbucket URLs, like:
Opening file URLs
Opening branches
Example: https://gitpod.io/#https://bitbucket.org/gitpod/spring-petclinic/src/my-branch/
Opening issues
Example: https://gitpod.io/#https://bitbucket.org/gitpod/spring-petclinic/issues/1/make-first-name-optional
Opening pull requests
Depending on the context, your dev environment will be initialized differently.
For instance, if you start a workspace from the issue context above, you’ll get a fresh workspace with a new local branch based on the repository’s default branch (e.g. master
).
The new local branch will be named like <username>/<issue-title>-<issue-nr>
, in my case it is:
svenefftinge/allow-skip-first-name-1
(if the issue title is too long, only the first few words will be included in the branch name).
Configure your project
To get the most out of Gitpod, you should describe your project’s dev environment with code. Dev environments are based on containers which you can configure through a custom Dockerfile
.
Furthermore you can specify which tasks should run after a fresh checkout in a .gitpod.yml
file. Usually these tasks include build steps, downloading dependencies and running some unit tests. Read the section below on prebuilds to make Gitpod automatically run these steps ahead of time, as a CI pipeline whenever some changes are pushed to your project.
There is much more you can do to make sure every organization member gets a ready-to-code dev environment when they need one. Please refer to the docs for details.
Prebuilds
Gitpod’s prebuilt workspaces are key to providing ephemeral, ready-to-code dev environments for your branches and repositories. You can configure Gitpod to run your project’s build asynchronously every time someone pushes new commits or branches to your repository. So when a developer wants to start coding, she can start immediately, because everything is already prepared.
Enabling prebuilds on your Bitbucket project is done by configuring a Webhook. This can be done automatically: Just trigger the first prebuild on your project manually, and Gitpod will take it from there. To do that, use the prefix https://gitpod.io/#prebuild/
, as in
https://gitpod.io/#prebuild/
https://bitbucket.org/<myuser>/<myrepo>
We Need Your Feedback
If you have ideas how Gitpod can be improved for you, or if you notice a bug, please always feel free to let us know. We would also be glad to welcome you in our community. ❤️