Skip to content

Latest commit

 

History

History
66 lines (42 loc) · 1.57 KB

File metadata and controls

66 lines (42 loc) · 1.57 KB
title Contributing to Dot Ledger
layout minimal

Contributing

Thank you for your interest in contributing to Dot Ledger.

Contributor License Agreement

By submitting code as an individual you agree to the individual contributor license agreement.

By submitting code as an entity you agree to the corporate contributor license agreement.

Contribution Guide

1. Fork it. Clone it.

git clone git@github.com:[your-username]/dotledger.git

Follow the setup instructions in the README.md.

2. Create a feature branch.

git checkout -b my_feature

3. Run the tests.

Follow the testing instructions in the README.md.

3. Make your change.

💡

4. Run the tests again.

You're much more likely to have your feature merged if your changes include tests.

5. Commit your changes.

git commit -am "Added some awesome feature."

6. Push your feature branch.

git push origin my_feature

7. Open a Pull Request.

You should receive some kind of feedback within a couple of days.