Create a repository and add a teammate

On this page

Still need help?

The Atlassian Community is here for you.

Ask the community

robotsnoindex
robotsnoindex
robotsnoindex


Disclaimer: The following section of this tutorial outlines the steps of adding a reviewer (or team member) to your pull request, so you can collaborate on your code on Bitbucket Cloud. If you are not working with a teammate or do not need to add reviewers at this time, feel free to move onto the next tutorial: Learn branching in Bitbucket Cloud

You just arrived at the Bitbucket space station and it's time to go through the orientation process, part of which involves making updates to your welcome package and getting them approved.

Create a repository with some content

No worries about putting a whole bunch of code together for this repository. We'll provide you with some to start.

  1. Click + in the global sidebar and select Repository under Create.
  2. Make sure the team you created is the repository Owner.
  3. Enter anything you want for the Project name and Repository name. If you can't think of anything, how about Welcome package and First impressions, respectively.
  4. From Include a README?, select either of the Yes options.
  5. From Version control system, pick an option for the type of repository you want to create. If you're not sure, keep as is.
  6. Click Create repository and you'll land on the Source view of your brand, new repository.
  7. From Source, select  > Add file.
  8. Name the file survey.html, then copy this code and paste it into the main text area.

    Copy and paste these contents
    <!DOCTYPE html>
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    <style media="screen" type="text/css">
    body {
    margin: auto;
    width: 700px;
    color: #FFFFFF;
    font-family: Arial, sans-serif;
    background-color: #172B4D;
    }
    body>h1 {
    margin: 50px;
    font-size: 50px;
    text-align: center;
    color: #0052CC;
    }
    </style>
    </head>
    <body>
    <h1>Working in a workspace in space</h1>
    <p>
    Welcome to the workspace! You've made it this far so we know that you've got the potential to do great things. Because you're going to be collaborating with other awesome people, anything you add needs to be code reviewed and approved. That's just how a workspace works! You should have already created a branch and checked it out locally. If you haven't, go back to the tutorial and do that now. We'll be here.
    </p>
    <p>
    Because you're on your own branch, you can go crazy. Spice up this file any way you like. Add more files to this repository if you see fit. If want to take it slow and are just here to learn about pull requests, you can use this opportunity to fill out our short questionnaire.
    </p>
    <br>
    <p>
    <b>Question 1</b>: Have you used pull requests before?
    </p>
    <p>
    <b>Answer 1</b>: **** Your answer here ****
    </p>
    <p>
    <b>Question 2</b>: Why do you want to learn about code review?
    </p>
    <p>
    <b>Answer 2</b>: **** Your answer here ****
    </p>
    <p>
    <b>Question 3</b>: Who do you plan to work with on Bitbucket?
    </p>
    <p>
    <b>Answer 3</b>: **** Your answer here ****
    </p>
    </body>
    </html>
  9. Click Commit and then Commit again from the dialog.

Your repository is looking pretty good now. Take a look around if you feel like it.

Next


Last modified on Jun 24, 2020

Was this helpful?

Yes
No
Provide feedback about this article
Powered by Confluence and Scroll Viewport.