第一章:centos7git安装

通过一条sudo apt-get install git就可以直接完成Git的安装


Git是分布式版本控制系统,所以,每个机器都必须自报家门:你的名字和Email地址。你也许会担心,如果有人故意冒充别人怎么办?这个不必担心,首先我们相信大家都是善良无知的群众,其次,真的有冒充的也是有办法可查的。

$ git config --global user.name "xxxx"
$ git config --global user.email "[email protected]"



发布了32 篇原创文章 · 获赞 16 · 访问量 4万+

猜你喜欢

转载自blog.csdn.net/qq_32497361/article/details/78560407