Here is my git workflow:
Explanation :
- In local, I develop one feature
Feat1
and I push it to theDev
branch once it's done. Same thing forFeat2
. - On the test server, I pull the
Dev
branch (the 2 features are now on the test server). - Once the 2 features are tested and approved, I push the
Dev
branch to theMaster
branch. - 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