-
Notifications
You must be signed in to change notification settings - Fork 37
Contributing
Kent Wills edited this page Feb 20, 2017
·
1 revision
- Fork this repository on github: https://help.github.com/articles/fork-a-repo/
- Clone it: https://help.github.com/articles/cloning-a-repository/
- Make a feature branch for your changes:
git remote add yelp https://github.com/Yelp/beans.git
git fetch yelp
git checkout yelp/development -b my-feature-branch
- Make sure the test suite works before you start:
make development
source venv/bin/activate
make test
- Commit patches: http://gitref.org/basic/
- Push to github:
git pull && git push origin
- Send a pull request: https://help.github.com/articles/creating-a-pull-request/