|
|
|
|
|
by bjourne
3754 days ago
|
|
> and hired an external consultant to get in order. Recipe for disaster. :p > knew people who pushed / committed like every 30 seconds Pushing and committing is completely different actions in the git world. If it's a simple fix then I try to commit and push almost instantly. If it is a large piece of work that needs several days, then I "checkpoint" it by committing at least once/day. But I try to never checkpoint by committing something that breaks the build or unit tests. Like if my work is rewriting module A to B, then my first commit would be to add module B, second to change all dependencies from A to B and lastly to delete module A from the repo. |
|