美文网首页
ubuntu14.04安装git

ubuntu14.04安装git

作者: ArleyDu | 来源:发表于2016-06-23 13:31 被阅读35次

步骤:
1,sudo apt-get updatesudo apt-get install git

2,然后配置自己的Git账号信息,这样才能进行相关的操作:

git config --global user.name "Your Name"
git config --global user.email "youremail@domain.com"

3,可以通过下面的命令查看git的配置信息:

git config --list

显示信息如下:
user.name=Your Name
user.email=youremail@domain.com

相关文章

网友评论

      本文标题:ubuntu14.04安装git

      本文链接:https://www.haomeiwen.com/subject/sdondttx.html