[Github] repository naming convention이 있을까?

멍게장·2022년 5월 9일
3

출처: https://stackoverflow.com/questions/11947587/is-there-a-naming-convention-for-git-repositories

Github repository naming convention

1. use lowercase

ex) myproject

2. use hyphens('-')

ex) my-project

3. be specific

  • 만약 테트리스 게임을 만드는 repository를 생성한다고 가정한다면, 다음과 같이 이름을 작성 할 수 있을 것이다.

    	ex) my-tetris-game-project

4. be consistent

  • 다른 프로젝트를 진행할 때에도 일관성있게 작성해라.

    	ex) my-ping-pong-game-project



결론

위 링크를 따라 들어가서 답변을 살펴보면 대체적으로 위와 같이 이야기 하지만, 딱히 정해져 있는 naming convention은 없는 것 같다.

개인적으로는 구체적이고 일관성있게 작성한다면 충분할 것으로 생각된다.

0개의 댓글