I don't know about git, it's very difficult for me to do it all in English, and these are the information I find on the Internet:
Git
Git is an open source distributed version control system for efficient, high-speed processing of project versioning from very small to very large. Git is an open source version control software developed by Linus Torvalds to help manage the development of the Linux kernel.
Torvalds started to develop Git as a transitional solution to replace BitKeeper, which was previously the primary source code tool used by Linux kernel developers worldwide. Some in the open source community felt that BitKeeper's license was not appropriate for the open-source community, so Torvalds decided to work on a more flexible version control system. Although Git was originally developed to assist the Linux kernel development process, we have found that Git is also used in many other free software projects. For example, recently migrated to Git, and many freedesktop projects migrated to Git. Features of Git:
From a general developer's point of view, Git has the following features:
1. Clone the complete Git repository (including code and version information) from the server to a single machine.
2, in their own machine based on different development purposes, create branches, modify the code.
3. Commit the code on the branch you created on the machine.
4. Merge branches on a single machine.
5. Fetch the latest version of the code on the server and merge it with your main branch.
6. Create patches to send patches to the main developer.
7, look at the feedback of the main developer, if the main developer discovers that there is a conflict between the two general developers (they can resolve the conflict between them), they will be asked to resolve the conflict first, and then by one of the people submit. If the main developer can resolve it himself, or if there is no conflict, pass.
8, the general developer to resolve the conflict between the method, the developer can use pull command to resolve the conflict, resolve the conflict and then submit the patch to the main developer.
I know about git.