Skip to content
axlbonnet edited this page Jan 22, 2026 · 1 revision
  1. 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"
  1. 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.

  2. We adopt the branching model described here.

  3. When working on a new feature:

  • In your fork, create a new feature branch from the development branch:
git checkout -b new_feature develop
  1. 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).

Clone this wiki locally