|
|
|
|
|
by michaelmure
1293 days ago
|
|
A bugtracker being "branch aware" and able to say where an issue started, where it was fixed ... can (and should IMHO) be a different concern than how the data is stored and how conflict resolution happen. By conflict resolution here, I mean: what happens when two user on different machines edit their issues and then states get merged?
If you have this data into some format (let say JSON) and rely on git automatically merging, you eventually end up with corrupted formatting.
Instead, you can do all that in your own branches, not pollute the normal code and not let git do any merging. Then, you can still have your bugtracker understand branches and track that information. |
|