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 - MergeOrganization members
. This can also avoid the 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. 🎜
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
. This can also avoid thecommit
. If it is an organizational project, you can create an organization and add them all ascommit
提交了。如果是组织项目的话,可以创建一个组织,将他们都添加成为组织成员,这样也可以避免Fork - Merge
Organization membersFork - Merge
form.