TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

Ask HN: How to Start Contributing to Open Source?

1 点作者 gcz92将近 10 年前
I have been a serious follower and user of a couple open source projects but have been extremely overwhelmed by the idea of contributing to the project. How do I start? How did you start? What should I follow to get more information about open source communities?

2 条评论

viraptor将近 10 年前
Where to start? Find a project that interests you, or one where you already reported some bug. Depending on your skills, it may be better to choose a project which doesn&#x27;t have a huge codebase (quicker iterations possible), but does have more than one developer (you&#x27;ll get quicker responses).<p>How to start? Get as much information as possible about the project: what&#x27;s the dev&#x2F;review strategy (github pull requests &#x2F; mailing list &#x2F; review board &#x2F; ...), do they have contribution guidelines, do you have to sign any forms, etc. Browse through existing issues - some projects label easy bugs as &quot;entry level&quot; or similar. They&#x27;re a good way to get involved.<p>Have a look at other contributions and find make sure you know what checks they go through. Make sure you&#x27;re not wasting other developer&#x27;s time. For example be sure that your new code passes all tests and adheres to the project coding guidelines. If it looks like it may need updated documentation, include updated documentation. If it looks like it may need extra explanation, make sure to include it in the patch.<p>The only thing that&#x27;s common in open source communities is that every one is completely different and has its own rules. :) (And that they&#x27;re mostly based on free time contribution and mutual respect)
informatimago将近 10 年前
1- get the source, 2- read the source, 3- find the bug list (trac, github issues, launchpad, whatever the project uses), 4- search for an open bug that seems easy to correct, 5- correct the bug, 6- request a merge, or send a patch, 7- listen to comments and reviews about your patches, 8- repeat a certain number of times, 9- eventually ask for write permissions on the project repo, 10- continue correcting bugs and adding features, 11- write some documentation, 12- help newbies.