2017-08-28 05:29:39 -04:00
|
|
|
# How to get started helping out in the curl project
|
|
|
|
|
|
|
|
We are always in need of more help. If you are new to the project and are
|
2017-08-29 02:31:59 -04:00
|
|
|
looking for ways to contribute and help out, this document aims to give a few
|
2017-08-28 05:29:39 -04:00
|
|
|
good starting points.
|
|
|
|
|
|
|
|
A good idea is to start by subscribing to the [curl-library mailing
|
|
|
|
list](https://cool.haxx.se/mailman/listinfo/curl-library) to keep track of the
|
|
|
|
current discussion topics.
|
|
|
|
|
|
|
|
## Scratch your own itch
|
|
|
|
|
|
|
|
One of the best ways is to start working on any problems or issues you have
|
|
|
|
found yourself or perhaps got annoyed at in the past. It can be a spelling
|
|
|
|
error in an error text or a weirdly phrased section in a man page. Hunt it
|
|
|
|
down and report the bug. Or make your first pull request with a fix for that.
|
|
|
|
|
2020-06-12 06:01:49 -04:00
|
|
|
## Smaller tasks
|
|
|
|
|
|
|
|
Some projects mark small issues as "beginner friendly", "bite-sized" or
|
|
|
|
similar. We don't do that in curl since such issues never linger around long
|
|
|
|
enough. Simple issues get handled very fast.
|
|
|
|
|
|
|
|
If you're looking for a smaller or simpler task in the project to help out
|
|
|
|
with as an entry-point into the project, perhaps because you are a newcomer or
|
|
|
|
even maybe not a terribly experienced developer, here's our advice:
|
|
|
|
|
|
|
|
- Read through this document to get a grasp on a general approach to use
|
2020-12-12 12:59:10 -05:00
|
|
|
- Consider adding a test case for something not currently tested (correctly)
|
2020-06-12 06:01:49 -04:00
|
|
|
- Consider updating or adding documentation
|
|
|
|
- One way to get your feet wet gently in the project, is to participate in an
|
|
|
|
existing issue/PR and help out by reproducing the issue, review the code in
|
|
|
|
the PR etc.
|
|
|
|
|
2017-10-27 05:19:22 -04:00
|
|
|
## Help wanted
|
2017-08-28 05:29:39 -04:00
|
|
|
|
2017-10-12 03:50:52 -04:00
|
|
|
In the issue tracker we occasionally mark bugs with [help
|
|
|
|
wanted](https://github.com/curl/curl/labels/help%20wanted), as a sign that the
|
|
|
|
bug is acknowledged to exist and that there's nobody known to work on this
|
2017-08-28 05:29:39 -04:00
|
|
|
issue for the moment. Those are bugs that are fine to "grab" and provide a
|
|
|
|
pull request for. The complexity level of these will of course vary, so pick
|
|
|
|
one that piques your interest.
|
|
|
|
|
|
|
|
## Work on known bugs
|
|
|
|
|
|
|
|
Some bugs are known and haven't yet received attention and work enough to get
|
|
|
|
fixed. We collect such known existing flaws in the
|
2020-11-04 08:02:01 -05:00
|
|
|
[KNOWN_BUGS](https://curl.se/docs/knownbugs.html) page. Many of them link
|
2017-08-28 05:29:39 -04:00
|
|
|
to the original bug report with some additional details, but some may also
|
|
|
|
have aged a bit and may require some verification that the bug still exists in
|
|
|
|
the same way and that what was said about it in the past is still valid.
|
|
|
|
|
|
|
|
## Fix autobuild problems
|
|
|
|
|
2020-11-04 08:02:01 -05:00
|
|
|
On the [autobuilds page](https://curl.se/dev/builds.html) we show a
|
2017-08-28 05:29:39 -04:00
|
|
|
collection of test results from the automatic curl build and tests that are
|
|
|
|
performed by volunteers. Fixing compiler warnings and errors shown there is
|
|
|
|
something we value greatly. Also, if you own or run systems or architectures
|
|
|
|
that aren't already tested in the autobuilds, we also appreciate more
|
|
|
|
volunteers running builds automatically to help us keep curl portable.
|
|
|
|
|
|
|
|
## TODO items
|
|
|
|
|
|
|
|
Ideas for features and functions that we have considered worthwhile to
|
|
|
|
implement and provide are kept in the
|
2020-11-04 08:02:01 -05:00
|
|
|
[TODO](https://curl.se/docs/todo.html) file. Some of the ideas are
|
2017-08-28 05:29:39 -04:00
|
|
|
rough. Some are well thought out. Some probably aren't really suitable
|
|
|
|
anymore.
|
|
|
|
|
2017-08-29 02:31:59 -04:00
|
|
|
Before you invest a lot of time on a TODO item, do bring it up for discussion
|
2017-08-28 05:29:39 -04:00
|
|
|
on the mailing list. For discussion on applicability but also for ideas and
|
|
|
|
brainstorming on specific ways to do the implementation etc.
|
|
|
|
|
|
|
|
## You decide
|
|
|
|
|
|
|
|
You can also come up with a completely new thing you think we should do. Or
|
|
|
|
not do. Or fix. Or add to the project. You then either bring it to the mailing
|
|
|
|
list first to see if people will shoot down the idea at once, or you bring a
|
|
|
|
first draft of the idea as a pull request and take the discussion there around
|
|
|
|
the specific implementation. Either way is fine.
|
|
|
|
|
|
|
|
## CONTRIBUTE
|
|
|
|
|
2020-11-04 08:02:01 -05:00
|
|
|
We offer [guidelines](https://curl.se/dev/contribute.html) that are
|
2017-08-28 05:29:39 -04:00
|
|
|
suitable to be familiar with before you decide to contribute to curl. If
|
|
|
|
you're used to open source development, you'll probably not find many
|
|
|
|
surprises in there.
|