mardi 31 mars 2015

git workflow: local, test and prod server

Here is my git workflow:


git workflow


Explanation :



  1. In local, I develop one feature Feat1 and I push it to the Dev branch once it's done. Same thing for Feat2.

  2. On the test server, I pull the Dev branch (the 2 features are now on the test server).

  3. Once the 2 features are tested and approved, I push the Dev branch to the Master branch.

  4. On the production server, I pull the Master branch (the two features are now on the production server).


The problem is: what if I want to push only Feat1 on the production server? Only Feat2? In this case, is the current workflow a good workflow?


Aucun commentaire:

Enregistrer un commentaire