|
|
|
|
|
by JimDabell
331 days ago
|
|
There are different flavours of TBD. Some use short-lived feature branches, some commit directly to master. The article advocates for the latter. PRs basically have a hard-requirement on branches (or equivalent, like fork), because the code that is being requested to pull needs to be available somewhere. The article also advocates for not using pull requests. However people who take this position also often advocate for post-merge code review. And more advocate for pair programming or mob programming, which they consider to represent code review as well. So branchless TBD isn’t incompatible with code review, just code review as it is commonly practiced. |
|