リポジトリを作成してチームメイトを追加する

このページの内容

お困りですか?

アトラシアン コミュニティをご利用ください。

コミュニティに質問

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

リポジトリ用に大量のコードを用意する必要はありません。このチュートリアルでは、いくつかのサンプル コードを用意しています。

  1. グローバル サイドバーで + をクリックし、[作成] の下の [リポジトリ] を選択します。
  2. 作成したチームがリポジトリのオーナーになっていることを確認します。
  3. [プロジェクト名] と [リポジトリ名] に任意の名前を入力します。名前を思いつかない場合、"Welcome package" や "First impressions" などをおすすめします。
  4. [Include a README?] から、[Yes] のいずれかのオプションを選択します。
  5. [バージョン管理システム] から、作成したいリポジトリ タイプのオプションを選択します。不明な場合はそのままにします。
  6. [リポジトリの作成] をクリックすると、新しいリポジトリの [ソース] ビューに移動します。
  7. [ソース] から、 > [ファイルを追加] を選択します。
  8. ファイルに survey.html と名前を設定してから、次のコードをコピーしてメインのテキスト領域に貼り付けます。

    このコンテンツをコピーアンドペースト
    <!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!チュートリアルを実行していただきありがとうございます。これからはほかのユーザーとのコラボレーションを行うため、すべての変更がコード レビューおよび承認されることになります。ワークスペースはこのように機能します。既にブランチを作成し、ローカルでチェックアウトしました。まだ行っていない場合は、チュートリアルに戻ることをおすすめします。作業を完了したら、このステップを再開できます。
    </p>
    <p>
    自分自身のブランチがあるため、自分の好きなようにこのファイルを変更できます。このリポジトリにファイルを追加することもできます。プル リクエストについてじっくり学習したい場合 次の短い質問に回答することができます。
    </p>
    <br>
    <p>
    <b>質問 1</b>: 過去にプルリクエストを使用したことがありますか?
    </p>
    <p>
    <b>回答 1</b>: **** 回答をここに記入 ****
    </p>
    <p>
    <b>質問 2</b>: コード レビューについて学習したいと思ったのはなぜですか?
    </p>
    <p>
    <b>回答 2</b>: **** 回答をここに記入 ****
    </p>
    <p>
    <b>質問 3</b>: Bitbucket で誰と作業する予定ですか?
    </p>
    <p>
    <b>回答 3</b>: **** 回答をここに記入 ****
    </p>
    </body>
    </html>
  9. [コミット] をクリックし、ダイアログからもう一度 [コミット] をクリックします。

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

次へ


最終更新日 2020 年 6 月 24 日

この内容はお役に立ちましたか?

はい
いいえ
この記事についてのフィードバックを送信する
Powered by Confluence and Scroll Viewport.