Programming/잡다한것
github repository name convention
junojuno
2022. 9. 2. 18:28
깃헙 레포지토리 이름은 소문자, 그리고 - (dash)의 조합으로 생성한다.
stackoverflow에 따르면 다음과 같다
1. 소문자 이용해라
2. 대쉬 써라
3. 명확하게 작성해라. (service, rest-service 대신 purchase-rest-service 같이 명확하게)
4. 일관되게 작성해라.
https://stackoverflow.com/questions/11947587/is-there-a-naming-convention-for-git-repositories
Is there a naming convention for git repositories?
For example, I have a RESTful service called Purchase Service. Should I name my repository: purchaserestservice purchase-rest-service purchase_rest_service or something else? What's the conventio...
stackoverflow.com