- Description
- How to use it
- 1. Search for the extension in the corresponding store
- 2. Search in Bitbucket for the button to start the workspace
- 4. Choose the corresponding settings for your workspace
- Alternative without extension
Description
The Gitpod extension is used to launch a Gitpod workspace directly from Bitbucket. The extension is installed through the respective browser store and is ready to use immediately.
How to use it
1. Search for the extension in the corresponding store
2. Search in Bitbucket for the button to start the workspace
Instead of the this, as another option to launch a workspace in Gitpod you can click on the extension icon in the browser a new workspace based on the branch that is open will be created.
4. Choose the corresponding settings for your workspace
Alternative without extension
Sometimes the extension is not working correctly or the users do not want or are able to install a extension. So alternatively to it, a bookmark can be added with the next code as the URL so each time is clicked it opens a gitpod workspace, similar as the extension.
javascript: (() => { "use strict"; (function () { for ( var t = document.getElementsByTagName("meta"), n = 0; n < t.length; n++ ) { var o = t[n]; if (o.content.toLowerCase().includes("gitlab")) return !0; if ("hostname" === o.name && o.content.includes("github")) return !0; if ( "application-name" === o.name && o.content.toLowerCase().includes("bitbucket") ) return !0; } return !1; })() && window.open( ("https://gitpod.io", "https://gitpod.io/#" + (window.location.protocol + "//" + window.location.host) + window.location.pathname) );})();
Back to Documentation
Back to Home Page