Fork me on GitHub
#polylith
<
2024-05-16
>
Samuel Ludwig18:05:48

Is there a convention that you use for pushing changes to (your own) development files? I've been using a generic "Update devfiles" message and I'm paranoid of polluting the commit history.

tengstrand20:05:37

Do you mean code that is only used by you in dev?

tengstrand03:05:05

I don't know of a good convention, but in my experience, such code can be valuable to other developers on the team. For example if you have your own code that queries the database or fiddle with other parts of the system! If you keep these commits isolated, which I believe you already do, I would try to explain what's in each commit.

1
imre08:05:00

I normally use 2 guidelines for stuff like these: 1. keep them in separate commits (per Kent Beck's Tidy First(?)) 2. prefix the message with a dev: type per https://www.conventionalcommits.org/

1
🔥 1