Learn more about version management of both git

First, understand the version management:

(1) file version management is a record of changes in the way, for future reference a specific version of the file contents;

Second, the problem of artificial Maintenance Issue :

(1) document number and the name is not clear cause confusion Issue.

(2) each time you edit a document needs to be copied, not convenient;

(3) people to simultaneously edit the same document, prone to coverage.

 

Three, Git understanding:

(1) Git is a distributed version control management system (acronym VCS), which can be at any point in time, the state of the document as an update records saved,

It can be at any point in time, the update records recovery back.

(2)

  • gitIt is a version management tool

  • gitWe can help managed code, every submission information will be recorded in the git repository

  • gitCan help us manage the code, we are all subsequent development team, each developer a feature that can help us put the code by git integration

Guess you like

Origin www.cnblogs.com/piyangtao/p/11635596.html