-
Notifications
You must be signed in to change notification settings - Fork 1
Github workflow
Laurent Arnoult edited this page Apr 19, 2021
·
2 revisions
Pour contribuer à Clap, suivez le workflow suivant:
- Mettez vous à jour avec le code sur master.
- Créez une branche de travail 'ma-nouvelle-feature'.
- Développer les nouvelles fonctionnalités sur cette branche.
- Testez votre branche sur Staging.
- Créez une Pull-request de votre branche vers master.
- Demandez un autre contributeur au projet de valider les changements.
- 'Merge' la PR sur master.
Voici les commandes pour Git. (Sinon utiliser Github Desktop c'est plus facile 😉)
- Mettez vous à jour avec le code sur
master
:
git checkout master
git pull
- Créez une branche de travail 'ma-nouvelle-feature'.
git checkout -B "ma-nouvelle-feature"
- Développer les nouvelles fonctionnalités sur cette branche. Régulièrement faites des commits:
git add .
git commit -m "mes-changements"
git push
- Testez votre branche sur Staging. (Voir prochaine étape)
- Créez votre pr:
https://github.com/parlemonde/clap/compare/master...ma-nouvelle-feature
<= Précédent: Lancer Clap avec Docker Suivant: Déployer sur Staging =>