jubilee

Programing, Books and more...

Git コミットのメッセージ書き方

Gitではコミットメッセージの形式に関して制約はないが、標準的な形式は以下となる。

  • 1行目にコミットの全体的説明を50字以内で記述
  • 2行目は空行
  • 3行目以降に変更内容の詳細を記述
  • 現在形で記述
1
2
3
4
Change the message displayed by hello.py

- Update the sayHello() function to output the user's name
- Change the sayGoodbye() function to a friendlier message

参考

https://www.atlassian.com/ja/git/tutorial/git-basics#!commit