summaryrefslogtreecommitdiff
path: root/CONTRIBUTING
blob: 1ecd13945c48492f45a9bb91c6c89b2a506831f1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# IMPORTANT: HOW TO USE REDIS GITHUB ISSUES

* Github issues SHOULD ONLY BE USED to report bugs, and for DETAILED feature
  requests. Everything else belongs to the Redis Google Group.

  PLEASE DO NOT POST GENERAL QUESTIONS that are not about bugs or suspected
  bugs in the Github issues system. We'll be very happy to help you and provide
  all the support in the Redis Google Group.

  Redis Google Group address:
  
      https://groups.google.com/forum/?fromgroups#!forum/redis-db

# How to provide a patch for a new feature

1. Drop a message to the Redis Google Group with a proposal of semantics/API.

2. If in steps 1 you get an acknowledge from the project leaders, use the
   following procedure to submit a patch:

    a. Fork Redis on github ( http://help.github.com/fork-a-repo/ )
    b. Create a topic branch (git checkout -b my_branch)
    c. Push to your branch (git push origin my_branch)
    d. Initiate a pull request on github ( http://help.github.com/send-pull-requests/ )
    e. Done :)

Thanks!