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

リポジトリを作成する

プロジェクトを GitHub Enterprise Serverのインスタンス に保存するには、それを保存するためのリポジトリを作成する必要があります。

リポジトリの作成

インナーソースプロジェクトを含め、さまざまなプロジェクトを 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. Replace project-name with the desired name for your repository. If you want your project to belong to an organization instead of to your user account, specify the organization name and project name with organization-name/project-name.

    gh repo create 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. Alternatively, you can specify arguments to skip these prompts. 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. ファイルに加えた変更を確認します。 新しいコンテンツは緑色で表示されます。 ファイルプレビュービュー
  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 Enterprise Server 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 Enterprise Server and make changes to them by creating a fork of the repository. For more information see, "Fork a repository."

Each repository in GitHub Enterprise Server 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 Enterprise Serverには素晴らしいサポートコミュニティがあり、助けを求め、世界中の人々と話すことができます。 Github Support Communityでの会話に参加してください。

問題がまだ解決していませんか?