|
|
|
|
|
by bookwormAT
3114 days ago
|
|
Can someone further explain how the pre commit phase works? I don't get how/why "pre commits" work without feature branches? How are my changes shared with the reviewer, if I there is no feature branch? Is my local code uploaded to that review tool mentioned in the article? And then what happens if the reviewer requests changes? I probably did get this completely wrong, so thanks in advance for pushing me in the right direction. |
|
This architecture assigns each line of code a nested history: the public commit log, and also the sub-history of each commit, which evolved during code review.
IMO it would be better if the code review changes were manifest in the public commit log (e.g. via feature branches), instead of being tracked separately. The code review layers add duplicative complexity.