颠覆,与凌乱的相处路线图
我每天都在维护一个包含许多新功能的大型网站。
我们没有明确的开发功能路线图(不要问 y /-: )。
我的问题是,每两天我们需要更新生产环境的一些小功能,这是必须的事情。
与此同时,在同一站点中,我们还开发了大型功能,其开发时间可能长达一周或更长时间。
管理这个问题的最佳方法是什么?
我希望能够在同一站点(甚至是相同的文件)中提供小功能和大功能。
谢谢
I am maintaining a large website with many new features every day.
We don't have a clear road map of development features ( Don't ask y /-: ).
My problem is that every 2 days we need to update the production environment with small features and it is a must thing.
In parallel to that, in the same site we have also a development of large features that its development time can be a week and more.
What is the best way to manage that?
I want to be able to provide small features with large features within the same site, even the same files.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在独立的分支中开发大型功能。
小的更改(大概)可以像平常一样在存储库上执行,然后开发分支在完成后合并。
Develop the large features in independent branches.
The small changes can (presumably) be performed on the repo as normal, then the development branches merged in upon completion.