Git Repository Naming
Contents
This article explores best practices for naming Git repositories, ensuring clarity, consistency, and maintainability. It covers key considerations such as readability, versioning, project scope, and collaboration standards to help developers create effective repository names.
Microservices
Better suited to a project team or department where multiple products exist and are made up of sub-components.
[product/project name]-[purpose]-[framework/language]
e.g. myproject-api-rails
For Open Source
[language/framework]-[product/project]
e.g. python-security-scripts
Less Used
[product/project name]-[purpose]
e.g. myproject-rest-api