Skip to content

Latest commit

 

History

History
32 lines (22 loc) · 1.36 KB

CONTRIBUTING.md

File metadata and controls

32 lines (22 loc) · 1.36 KB

Contributing

You can report bugs and request features using the issues page.

We love code contributions. You can easily work on the code if you have a GitHub account (get one). For that, please fork the repository, work on the code, and submit a pull request.

Hints on GitHub usage

Take a look at GitHub's excellent overview on the GitHub flow. The Feature Branch Workflow forms the basis of this kind of development.

In other words:

  1. Fork the project

  2. Clone the repo:

    git clone git@github.com:your-username/cid.git
    
  3. Create a new branch patch (or another speaking name)

    git checkout -b patch
    
  4. Make your changes.

  5. Commit your changes. Thereby, try to write a good commit message.

  6. Push your changes (to your repository)

  7. submit a pull request

  8. At this point you're waiting on us. We like to at least comment on pull requests as soon as possible. We may suggest some changes or improvements or alternatives.