2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

[自分的理解メモ]GitHubの運用ルール編

Last updated at Posted at 2020-04-02

色んなところから良さそうな所を寄せ集めた

プロジェクトのルール

プルリクエスト

  • issueの番号を書く

Projects

  • Cardは作らない
    • 履歴が検索しにくい為、基本的にissueで運用

issue

  • ラベル
    • projectラベルは付ける

commit message

基本的にAngularの開発ガイドに従い、プレフィックスを付ける。
(Angularの開発ガイドの他にtry:を追加した)

  • feat: 新しい機能
  • fix: バグの修正
  • docs: ドキュメントの変更
  • style: styleの変更
  • refactor: リファクタリング
  • perf: パフォーマンスに関すること
  • test: テストの変更
  • chore: 細かいこと、雑用
  • try: 試してみたいこと

ブランチのルール

削除タイミング

  • margeしたら

ブランチ命名規則

中央リポジトリ

  • master ここにマージされたらCircleCIが周り、deploygateに配信されます
  • develop 開発用

開発用リポジトリ

  • ブランチ名
    • プレフィックス/issueID/機能名
  • プレフィックス
    • feature: 新しい機能
    • fix: 修正全般
    • hotfix: 優先しなきゃいけないバグの修正
    • try: 試してみたいこと

フォーマットについて

Save Actionsというプラグインでフォーマットをかける(参考

2
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?