Why git is called a distributed source control system?

前端 未结 5 802
猫巷女王i
猫巷女王i 2021-02-15 23:23

It seems after committing code to the local repository, every programmer will run the command.

git push origin master

to push the local file to

5条回答
  •  广开言路
    2021-02-16 00:06

    It is called distributed because every git working directory contains a full-fledged repository containing complete history of the tree. This also means that you actually do not need network access for development because your tree can essentially be the master tree.

提交回复
热议问题