Open Source Projects – How to Maintain Quality

open source

How do open source projects maintain quality?
What keeps the projects from people with relatively little programming experience checking in poor quality codes?

Best Answer

What keeps the projects from people with relatively little programming experience checking in poor quality codes?

Usually, not everyone have the rights to change the source code. Most often there is only a small group of trusted developers that have rights to change the source code. If someone else wants to make changes, they can submit patches, but these are checked and added by the developers with commit access.

Some projects allow other developers to join the trusted group, if they submit several patches of sufficient quality.

Related Topic