Deploying with Git/Github

前端 未结 5 1574
既然无缘
既然无缘 2021-01-31 19:52

We are trying to setup an automated deployment environemt with Git/Github. We have 3 different environments; local, test and live. When we add a new feature on local, we first u

5条回答
  •  陌清茗
    陌清茗 (楼主)
    2021-01-31 20:29

    Whether or not git is the right choice, is a good question.

    But if you're going to do it you should read through the gitworkflows manual page. Specifically, what it'll recommend and what sounds right given your problem above is that you need to put each separate "thing" to be developed into a topic/feature branch, and then merge that branch into the right tree when its done. That lets you separate out things so that you merge what is needed and stable and don't merge what isn't.

提交回复
热议问题