リポジトリの作成
インナーソースプロジェクトを含め、さまざまなプロジェクトを GitHub Enterprise Server リポジトリに保存できます。 インナーソースを使用すると、コードを共有して、より優れた、より信� �性の高いソフトウェアを作成できます。 インナーソースの詳細については、GitHub のホワイトペーパー「インナーソース入門」を参照してく� さい。
- ページの右上角で ドロップダウンメニューを使い、New repository(新規リポジトリ)を選択してく� さい。
- リポジトリに、短くて覚えやすい名前を入力します。 たとえば、"hello-world" といった名前です。
- 必要な� �合、リポジトリの説明を追� します。 たとえば、「GitHub Enterprise Server の最初のリポジトリ」などです。
- リポジトリの可視性を選択してく� さい。 For more information, see "About repositories."
- [Initialize this repository with a README] を選択します。
- [Create repository] をクリックします。
おめでとうございます。 最初のリポジトリ作成に成功し、初期設定として README ファイルが生成されました。
To learn more about GitHub CLI, see "About GitHub CLI."
- In the command line, navigate to the directory where you would like to create a local clone of your new project.
- 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 withorganization-name/project-name
. - Follow the interactive prompts. To clone the repository locally, confirm yes when asked if you would like to clone the remote project directory.
- 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 ファイルに変更を� えてコミットしてみましょう。
- リポジトリのファイル一覧にある、[README.md] をクリックします。
- ファイルの中身の上にある をクリックします。
- [Edit file] タブで、あなた自身に関する情� �を入力します。
- 新しいコンテンツの上で、Preview changes(変更のプレビュー)をクリックしてく� さい。
- ファイルに� えた変更を確認します。 You will see the new content in green.
- ページの下部で、ファイルに対して行った変更を説明する短く分かりやすいコミットメッセージを入力してく� さい。 コミットメッセージでは、複数の作者にコミットを関連づけることができます。 詳しい情� �については「複数の共作者を持つコミットの作成」を参照してく� さい。
- コミットメッセージフィールドの下で、コミットを追� を現在のブランチか新しいブランチから選択してく� さい。 現在のブランチがデフォルトブランチなら、コミット用に新しいブランチを作成してからPull Requestを作成すべきです。 詳しい情� �については「新しいプルリクエストの作成」を参照してく� さい。
- [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.
-
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.) -
Create a README file with some information about the project.
echo "info about this project" >> README.md
-
Enter
git status
. You will see that you have an untrackedREADME.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) -
Stage and commit the file.
git add README.md && git commit -m "Add README"
-
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.