How to contribute with code
On your side
- Create an account on https://framagit.org
- Fork the main project: Go to the Framadate Main Project Site and press fork.
- Create a branch named
feature/[Description] or bug/[description] from branch develop where [Description] is an english short description of what your patch does.
- Make commits inside your branch
- Push your branch inside your fork
- Create a merge request towards develop
- Check the « Accept edits from maintainers » checkbox
Note : If a while has passed since you forked the develop branch, there may be conflicts. In that case, don't forget to rebase your forked branch before pushing it for the Merge Request.
We handle the rest
- Someone will review your work: try to make it easier by organizing your commits
- If there's remarks on your work, the reviewer will comment on the merge request
- If the merge request looks good someone will merge your work inside the develop branch.
Corrections following a review
The merge request review might indicate you to make some change for it to be acceptable.
You can do these corrections inside your own branch, that will add it to the merge request.
Understand the code
A wiki page is dedicated to discover Framadate's code structure : Technical document.
Back to homepage