|
|
|
|
|
by sunshowers
541 days ago
|
|
So, with VCS in general you don't really need to have branches to be able to track multiple independent changes. (With Git you do, but that's an artifact of Git's model, not an inherent property of source control.) What you do need is a good way to visualize what work you have in flight. With Jujutsu that's as simple as typing in `jj` on the command line. At Facebook it was common for even junior devs to have 5-6 changes in flight with nary a branch in sight, and experienced devs like myself routinely had dozens. |
|