1
0
mirror of synced 2026-01-17 21:01:42 -05:00
Files
docs/translations/ru-RU/content/github/getting-started-with-github/create-a-repo.md
James M. Greene 885da5b3d3 Local run of Translations patching process over batch (#19360)
* New Crowdin translations by Github Action

* Reset broken translated files to English

* Ran script/i18n/homogenize-frontmatter.js

* Ran script/fix-translation-errors.js

* Reverted translated files with parsing and rendering errors

* fix malformed liquid

* add next directory to exclude list

* currentversion -> currentVersion

* fix liquid errors

* fix liquid errors

* Reset broken translated files to English

* Ran script/i18n/homogenize-frontmatter.js

* Revert /ja/github/authenticating-to-github/about-authentication-with-saml-single-sign-on

* Reset known broken translation files LAST

* Run script/i18n/homogenize-frontmatter.js

Co-authored-by: Crowdin Bot <support+bot@crowdin.com>
Co-authored-by: Rachael Sewell <rachmari@github.com>
Co-authored-by: Kevin Heis <heiskr@users.noreply.github.com>
2021-05-18 15:07:05 +00:00

4.4 KiB

title, redirect_from, intro, versions, topics
title redirect_from intro versions topics
Create a repo
/create-a-repo/
/articles/create-a-repo
To put your project up on {% data variables.product.product_location %}, you'll need to create a repository for it to live in.
free-pro-team enterprise-server github-ae
* * *
Pull requests
Issues
Notifications
Accounts

Create a repository

{% if currentVersion == "free-pro-team@latest" %}

You can store a variety of projects in {% data variables.product.product_name %} repositories, including open source projects. With open source projects, you can share code to make better, more reliable software.

{% elsif enterpriseServerVersions contains currentVersion or currentVersion == "github-ae@latest" %}

You can store a variety of projects in {% data variables.product.product_name %} repositories, including innersource projects. With innersource, you can share code to make better, more reliable software. For more information on innersource, see {% data variables.product.company_short %}'s white paper "An introduction to innersource."

{% endif %}

{% if currentVersion == "free-pro-team@latest" %}

{% note %}

Note: You can create public repositories for an open source project. When creating your public repository, make sure to include a license file that determines how you want your project to be shared with others. {% data reusables.open-source.open-source-guide-repositories %} {% data reusables.open-source.open-source-learning-lab %}

{% endnote %}

{% endif %}

{% data reusables.repositories.create_new %} 2. Type a short, memorable name for your repository. For example, "hello-world". Field for entering a repository name 3. Optionally, add a description of your repository. For example, "My first repository on {% data variables.product.product_name %}." Field for entering a repository description {% data reusables.repositories.choose-repo-visibility %} {% data reusables.repositories.initialize-with-readme %} {% data reusables.repositories.create-repo %}

Congratulations! You've successfully created your first repository, and initialized it with a README file.

{% if currentVersion == "free-pro-team@latest" or currentVersion ver_gt "enterprise-server@2.19" or currentVersion == "github-ae@latest" %} {% tip %}

Tip: You can also create repositories using the {% data variables.product.prodname_cli %}. For more information, see "gh repo create" in the {% data variables.product.prodname_cli %} documentation.

{% endtip %} {% endif %}

Commit your first change

A commit is like a snapshot of all the files in your project at a particular point in time.

When you created your new repository, you initialized it with a README file. README files are a great place to describe your project in more detail, or add some documentation such as how to install or use your project. The contents of your README file are automatically shown on the front page of your repository.

Let's commit a change to the README file.

  1. In your repository's list of files, click README.md. README file in file list
  2. Above the file's content, click {% octicon "pencil" aria-label="The edit icon" %}.
  3. On the Edit file tab, type some information about yourself. New content in file {% data reusables.files.preview_change %}
  4. Review the changes you made to the file. You'll see the new content in green. File preview view {% data reusables.files.write_commit_message %} {% data reusables.files.choose_commit_branch %} {% data reusables.files.propose_file_change %}

Celebrate

Congratulations! You have now created a repository, including a README file, and created your first commit on {% data variables.product.product_location %}. What do you want to do next?