如题,最近公司计划在明年将之前使用的VSS更换成新的版本管理软件,最好是开源不会引起版权纠纷的。老板把这个任务派给我了。我推荐Git,但是老板觉得需要最终审核人合并提交这个设计有些浪费人力...
如果没有就会要求我自己编写一套...所以想问问是否存在不需要最终审核人合并提交,但功能类似Git的版本管理软件。
PHP中文网2017-04-24 09:13:42
Git allows multiple people to edit a project together. If it is a personal project, you can add other people as Collaborators, so that they can be submitted directly commit
. If it is an organizational project, you can create an organization and add them all as commit
提交了。如果是组织项目的话,可以创建一个组织,将他们都添加成为组织成员,这样也可以避免Fork - Merge
Organization members
Fork - Merge
form. However, if it is a large-scale project (it is said that it is a project with more than 5 people, I have never done such a project, so I don’t know), I still don’t recommend this method of everyone submitting code. After all, if there are more people, the code will be complicated and there will be personal review. This will ensure the quality of the code and not clutter the code or anything like that. 🎜