上班后感觉好像这个倾向又被强化了,一方面摸鱼写的代码的 commit 很容易一个 commit 里面覆盖多个内容,而不是像写自己的项目那样细粒度到一两个文件,另一方面又总是担心意图没解释清楚别人难以理解自己的代码。
所以 commit 有时候就会长这样:
```markdown
[Core] (fix) Sorting algorithm, XXX Page, YYY Service
- Designed an algorithm to sort a certain dataset according to some requirements and constraints
- Included this algorithm into XXX page
- Extracted several methods to YYY service
- Removed deprecated codes
- Added test suite for subjects mentioned above
The algorithm scans the incoming dataset, which should conform to ..., at a first pass, it will ...
Some code has been refactored and reformatted.
```
不过也不总是这么长就是,如果 commit 改变的东西不多的话,那倒是经常一两个 bullet 就完了。
另外也感觉发 PR 的时候好像我总喜欢写得像 GitHub 的 readme 一样。
不过也听说是不是说长 commit 是新手的普遍操作,senior 的 commit 普遍一句话带过。