Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs(howto): add howto-create-repository-from-template.md #8

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
40 changes: 40 additions & 0 deletions docs/howto-create-repository-from-template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
# HOWTO Create a GitHub repository from template

<!-- (2024-11-12 08:09 CEST) -->

## Reference documents

- [Creating a template repository](https://docs.github.com/en/repositories/creating-and-managing-repositories/creating-a-template-repository) - GitHub Docs

## Step-by-step instructions

### Create a new repository

Login to GitHub.

In the GitHub dashboard, click **New** to create a new repository.

> **Create a new repository**
>
> A repository contains all project files, including the revision history.
> Already have a project repository elsewhere? [Import a repository](https://github.com/new/import).

- Repository template: `arol-polito/python-project-template`
- Include all branches: (leave unselected)
- Owner: (choose the user or organization you want to create this repository under, example: `arol-polito`)
- Repository name: (choose a unique name under the organization, example: `python-training-2024`)
- Description (optional): (provide a descriptive name, example: `Python and Golang training workshop in AROL, 2024`)
- Visibilty: (choose visibility that this repository should have, example: `Private`)

<!--
* Initialize this repository with:
* [x] Add a README file
* [x] Add .gitignore
* .gitignore template: Python
* [x] Choose a license
* License: MIT License
-->

then click **Create repository**.

<!-- EOF -->