Skip to main content
ドキュメントには� �繁に更新が� えられ、その都度公開されています。本ページの翻訳はま� 未完成な部分があることをご了承く� さい。最新の情� �については、英語のドキュメンテーションをご参照く� さい。本ページの翻訳に問題がある� �合はこちらまでご連絡く� さい。

このバージョンの GitHub Enterprise はこの日付をもって終了となりました: 2022-06-03. 重大なセキュリティの問題に対してであっても、パッチリリースは作成されません。 パフォーマンスの向上、セキュリティの改善、新機能のためには、最新バージョンのGitHub Enterpriseにアップグレードしてく� さい。 アップグレードに関する支援については、GitHub Enterprise supportに連絡してく� さい。

リポジトリを作成する

To put your project up on GitHub, you will need to create a repository for it to live in.

リポジトリの作成

インナーソースプロジェクトを含め、さまざまなプロジェクトを GitHub Enterprise Server リポジトリに保存できます。 インナーソースを使用すると、コードを共有して、より優れた、より信� �性の高いソフトウェアを作成できます。 インナーソースの詳細については、GitHub のホワイトペーパー「インナーソース入門」を参照してく� さい。

  1. ページの右上角で ドロップダウンメニューを使い、New repository(新規リポジトリ)を選択してく� さい。 新しいリポジトリを作成する選択肢を持つドロップダウン
  2. リポジトリに、短くて覚えやすい名前を入力します。 たとえば、"hello-world" といった名前です。 リポジトリ名を入力するフィールド
  3. 必要な� �合、リポジトリの説明を追� します。 たとえば、「GitHub Enterprise Server の最初のリポジトリ」などです。 リポジトリの説明を入力するフィールド
  4. リポジトリの可視性を選択してく� さい。 For more information, see "About repositories." リポジトリの可視性を選択するラジオボタン
  5. [Initialize this repository with a README] を選択します。 [Initialize this repository with a README] チェックボックス
  6. [Create repository] をクリックします。 Button to create repository

おめでとうございます。 最初のリポジトリ作成に成功し、初期設定として README ファイルが生成されました。

To learn more about GitHub CLI, see "About GitHub CLI."

  1. In the command line, navigate to the directory where you would like to create a local clone of your new project.
  2. To create a repository for your project, use the gh repo create subcommand. When prompted, select Create a new repository on GitHub from scratch and enter the name of your new project. If you want your project to belong to an organization instead of to your personal account, specify the organization name and project name with organization-name/project-name.
  3. Follow the interactive prompts. To clone the repository locally, confirm yes when asked if you would like to clone the remote project directory.
  4. Alternatively, to skip the prompts supply the repository name and a visibility flag (--public, --private, or --internal). For example, gh repo create project-name --public. To clone the repository locally, pass the --clone flag. For more information about possible arguments, see the GitHub CLI manual.

最初の変更をコミットする

コミットとは、ある特定の時点における、あなたのプロジェクト内のすべてのファイルのスナップショットのようなものです。

上の例では、新しいリポジトリを作成すると同時に README ファイルを生成しました。 README ファイルは、プロジェクトの詳細を説明したり、プロジェクトのインストール方法や使い方などのドキュメンテーションを書き込ん� りするためにふさわしい� �所です。 README ファイルの内容は、リポジトリのフロントページに自動的に表示されます。

それでは、README ファイルに変更を� えてコミットしてみましょう。

  1. リポジトリのファイル一覧にある、[README.md] をクリックします。 ファイル一覧にある README ファイル
  2. ファイルの中身の上にある をクリックします。
  3. [Edit file] タブで、あなた自身に関する情� �を入力します。 ファイル内の新しいコンテンツ
  4. 新しいコンテンツの上で、Preview changes(変更のプレビュー)をクリックしてく� さい。 ファイルプレビューボタン
  5. ファイルに� えた変更を確認します。 You will see the new content in green. ファイルプレビュービュー
  6. ページの下部で、ファイルに対して行った変更を説明する短く分かりやすいコミットメッセージを入力してく� さい。 コミットメッセージでは、複数の作者にコミットを関連づけることができます。 詳しい情� �については「複数の共作者を持つコミットの作成」を参照してく� さい。 変更のコミットメッセージ
  7. コミットメッセージフィールドの下で、コミットを追� を現在のブランチか新しいブランチから選択してく� さい。 現在のブランチがデフォルトブランチなら、コミット用に新しいブランチを作成してからPull Requestを作成すべきです。 詳しい情� �については「新しいプルリクエストの作成」を参照してく� さい。 コミットブランチのオプション
  8. [Propose file change] をクリックします。 ファイル変更の提案ボタン

Now that you have created a project, you can start committing changes.

README ファイルは、プロジェクトの詳細を説明したり、プロジェクトのインストール方法や使い方などのドキュメンテーションを書き込ん� りするためにふさわしい� �所です。 README ファイルの内容は、リポジトリのフロントページに自動的に表示されます。 Follow these steps to add a README file.

  1. In the command line, navigate to the root directory of your new project. (This directory was created when you ran the gh repo create command.)

  2. Create a README file with some information about the project.

    echo "info about this project" >> README.md
  3. Enter git status. You will see that you have an untracked README.md file.

    $ git status
    
    Untracked files:
      (use "git add ..." to include in what will be committed)
      README.md
    
    nothing added to commit but untracked files present (use "git add" to track)
  4. Stage and commit the file.

    git add README.md && git commit -m "Add README"
  5. Push the changes to your branch.

    git push --set-upstream origin HEAD

次のステップ

README ファイルを持つ新しいリポジトリを作成し、GitHub Enterprise Serverインスタンスに最初のコミットを作成しました。

  • You can now clone a GitHub repository to create a local copy on your computer. From your local repository you can commit, and create a pull request to update the changes in the upstream repository. For more information, see "Cloning a repository" and "Set up Git."
  • You can find interesting projects and repositories on GitHub and make changes to them by creating a fork of the repository. Forking a repository will allow you to make changes to another repository without affecting the original. For more information, see "Fork a repository."

  • Each repository on GitHub is owned by a person or an organization. You can interact with the people, repositories, and organizations by connecting and following them on GitHub Enterprise Server. For more information, see "Be social."

  • GitHubには� 晴らしいサポートコミュニティがあり、助けを求め、世界中の人々と話すことができます。 Join the conversation on GitHub Support Community.