-
Notifications
You must be signed in to change notification settings - Fork 23
Development
axlbonnet edited this page Jan 22, 2026
·
1 revision
- Your Git username and email should be set to your First-Last name and actual email:
git config --global user.name "Jeanne Tartempion" # not "tartempion" or "jtartempion" or "root"
git config --global user.email "jeanne.tartempion@university.fr" # not "root@localhost"
-
Developments are made in forks from the base repository. Developments lead to pull-requests that are merged by the owner(s) of the base repository.
-
We adopt the branching model described here.
-
When working on a new feature:
- In your fork, create a new feature branch from the development branch:
git checkout -b new_feature develop
- When feature development is finished:
- Push your commits to Github (your fork).
- Make a pull request to merge feature branch (in your fork) to development branch (in the base repository).