|
|
|
|
|
by cardanome
911 days ago
|
|
> Reading commit-by-commit means you’d read code that the author knows is wrong and had already fixed it If the commit is wrong, it shouldn't be there. I expect every commit in a Pull Request to be functional on its own or I am not going to approve it in the first place. Git has tools to rewrite your commit history and you should use them. The whole point is that I should be able to revert individual commits without code breaking. At least that is the ideal. A clean version history matters a lot of the people maintaining your code down the line. |
|