git commit frequency

前端 未结 11 1780
后悔当初
后悔当初 2020-11-29 21:06

Since i switched to git from svn i started make more commits every time i recompile and my tests pass i commit my work. In the end i end up committing function by function.<

11条回答
  •  借酒劲吻你
    2020-11-29 21:38

    1- Commits should be frequent; committing code to the remote repository (not just locally) should be done frequently so that the code is backed up just in case it is somehow lost; this happens more frequently than you'd expect so, pushing your changes by end of day is a must to avoid potential rework and to ensure the remote repository is always up to date.

    2- Commits should be granular and therefore should not include too many changes to the code base. Commits with too many changes are harder to revert and cannot be used as a reference from a "history" perspective as commit messages would have to be too long in order to cover the full scope.

    3- Commits should have a proper title; title should start with a capital letter and should not end in a period. Generally, titles should be short and to the point.

    4- Commit descriptions are optional but are nice to have.

提交回复
热议问题