1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
|
## Submitting a Pull Request
1. [Fork the repository.][fork]
2. [Create a topic branch.][branch]
3. Add specs for your unimplemented feature or bug fix.
4. Run `script/test`. If your specs pass, return to step 3.
5. Implement your feature or bug fix.
6. Run `script/test`. If your specs fail, return to step 5.
7. Add, commit, and push your changes. For documentation-only fixes, please
add "[ci skip]" to your commit message to avoid needless CI builds.
8. [Submit a pull request.][pr]
[fork]: https://help.github.com/articles/fork-a-repo
[branch]: http://learn.github.com/p/branching.html
[pr]: https://help.github.com/articles/using-pull-requests
|