]> git.saurik.com Git - redis.git/blame - CONTRIBUTING
Query the archive to provide a complete KEYS list.
[redis.git] / CONTRIBUTING
CommitLineData
8e30092f 1Note: by contributing code to the Redis project in any form, including sending
2a pull request via Github, a code fragment or patch via private email or
3public discussion groups, you agree to release your code under the terms
4of the BSD license that you can find in the COPYING file included in the Redis
d8a0fddd 5source distribution. You will include BSD license in the COPYING file within
6each source file that you contribute.
8e30092f 7
f4eb4b33 8# IMPORTANT: HOW TO USE REDIS GITHUB ISSUES
30d31cc8 9
f4eb4b33 10* Github issues SHOULD ONLY BE USED to report bugs, and for DETAILED feature
11 requests. Everything else belongs to the Redis Google Group.
30d31cc8 12
f4eb4b33 13 PLEASE DO NOT POST GENERAL QUESTIONS that are not about bugs or suspected
14 bugs in the Github issues system. We'll be very happy to help you and provide
15 all the support in the Redis Google Group.
16
17 Redis Google Group address:
18
19 https://groups.google.com/forum/?fromgroups#!forum/redis-db
20
21# How to provide a patch for a new feature
22
231. Drop a message to the Redis Google Group with a proposal of semantics/API.
24
252. If in steps 1 you get an acknowledge from the project leaders, use the
26 following procedure to submit a patch:
30d31cc8 27
e491a1a1 28 a. Fork Redis on github ( http://help.github.com/fork-a-repo/ )
30d31cc8 29 b. Create a topic branch (git checkout -b my_branch)
30 c. Push to your branch (git push origin my_branch)
e491a1a1 31 d. Initiate a pull request on github ( http://help.github.com/send-pull-requests/ )
30d31cc8 32 e. Done :)
33
34Thanks!