0

I am reading here about git branching strategie. Where to assign patches? should patches have their own branch? If yes where should patches branched from? from master branch?

Ronald
  • 2,721
  • 8
  • 33
  • 44

1 Answers1

2

If by "patches" you mean hotfixes to production, then yes, each one should be on its own branch named hotfix/xxx, where "xxx" is something that describes the hotfix. These branches should be branched off of master, and when ready should be merged into both master and develop.

David Deutsch
  • 17,443
  • 4
  • 47
  • 54
  • Well patches and hotfixes are two things. in the git doc the hotfixes are explained in the workflow but not the patches. this is why i am asking here – Ronald Feb 12 '16 at 16:01