- Make sure you're on the right branch, right now (February 2015), the main development branch is dev:
```
git checkout dev
```
- Create a feature branch:
```
git checkout -b feature/<short description of your feature>
```
- Make your changes, then push the branch into your ***own*** repository:
```
git push origin <your feature branch>
```
- Create a pull request (PR) against a branch of of the <opf/openproject> repository, containing a ***clear description*** of what the pull request attempts to change and/or fix.
We will then review your PR. Please note that you can add commits after the PR has been created by pushing to the branch in your fork.
## Important notices
- Please add tests to your code to verify functionality, especially if it is a new feature. Please also run these tests locally.
- Please create pull requests against the current `dev` branch. Hotfixes and Bugfixes should be created against the appropiate `release/*` branch.
- We want to keep the Pull request list as cleaned up as possible - we aim to close pull requests after an inactivity period of ***72 hours*** (no comments, no further pushes)
- We use OpenProject for development coordination - please have a look at [the work packages list](https://community.openproject.org/projects/openproject/work_packages) for upcoming features and reported bugs.