This repository has been archived by the owner on Nov 9, 2017. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 93
How to Contribute
Daniel Gregoire edited this page Aug 6, 2015
·
4 revisions
If you find a bug in the current release and want to fix it, please:
- Fork this library (use Github)
- Checkout the branch for the current release (e.g. looks like 0.5.x)
- Create a new branch off of that and check it out -
git checkout -b my-new-branch
- Fix the bug, and add a test that shows that the bug is fixed.
- Commit your code locally and push to your fork -
git add . && git commit -m "Your Message" && git push origin my-new-branch
- Create a pull request that targets the appropriate branch on the main repository (e.g., 0.5.x)
- Add some comments to your pull request so I understand what your code is supposed to do.
The master
branch of clj-webdriver houses code intended for the next minor-version release. If you want to propose new features for the next release, you're welcome to follow the above instructions for contributing code, but create your topic branch off of master
and issue your pull request against clj-webdriver's master
.
The clj-webdriver Wiki by Daniel Gregoire and community is licensed under a Creative Commons Attribution 4.0 International License. Based on a work at https://github.com/semperos/clj-webdriver/wiki.