- Repository name
- Short description
- License
- README (placement and rendering)
Repository name
Use a short, descriptive repository name that signals purpose and scope. When relevant, include a qualifier to distinguish types of projects (for example, “Blockbuster Web” vs “Blockbuster API”). Clear names help people find your repo in search results and understand its intent immediately.

- Click Add file → Create new file.
- Name the file
LICENSE(typing “license” will surface templates). - Choose a license template (for example, MIT or Apache 2.0), then review permissions, conditions, and limitations.
- Fill required fields (such as year or copyright holder) and commit to your default branch (e.g.,
main).

LICENSE file to your default branch.

- Root:
README.md— highest priority and most visible to visitors. docs/README.md— commonly used when a project has extensive documentation or GitHub Pages..github/README.md— used for organization-level defaults and some workflows.
github.com to github.dev to use the web-based editor.
Example: create a README inside the docs/ folder first.
README.md, GitHub will render docs/README.md on the repository landing page.

README.md exists in the repository root, GitHub will render that content on the repository home page instead of docs/README.md. If multiple README files exist (root, docs/, and .github/), GitHub chooses which to display based on its rendering rules and repository configuration. To avoid ambiguity, place the README you want visitors to see in the repository root.

docs/README.md
README.md(root)
.github/README.md


- A clear, descriptive repository name
- A short, helpful repository description
- A license file (e.g., MIT or Apache 2.0)
- A README placed where it will be rendered for visitors (commonly the repository root)
A well-written README and an explicit license dramatically increase the chances that others will find, trust, and contribute to your project. Invest a little time up front—clear names, a concise description, and the right README placement improve visibility, search ranking, and contributor confidence.
- MIT License
- Apache License 2.0
- Open a repo in the browser editor:
https://github.dev/<owner>/<repo>