ubuntu git的安装更新及配置

大憨熊 提交于 2020-01-24 06:36:14

安装及配置

参考地址:http://blog.csdn.net/qq_26990831/article/details/51857399

1.git 安装

   sudo apt-get install git

2.配置本机git的两个重要信息,user.name和user.email

 git config --global user.name "Your Name"

 git config --global user.email "email@example.com"

 

然后我们可通过命令 git config --list,查看是否设置成功

3. 查看home目录下是否有.ssh目录或者home目录下的ubuntu目录下是否有 .ssh目录,如果没有的话需要下面命令来生成git的ssh key

ssh-keygen -t rsa -C "youremail@example.com"

然后一直回车就可以了

4.在github上面要添加 .ssh的公钥

cd /home/ubuntu/.ssh             //如果没有找到.ssh 可以尝试在 /root/.ssh/下面找到 id_rsa.pub

cat id_rsa.pub

 

然后将这个文件中的内容添加到github上的添加公钥的地方即可

 

git更新版本

参考地址:http://www.cnblogs.com/shaobin0604/p/5987633.html

执行下面命令即可更新git

sudo add-apt-repository ppa:git-core/ppa

sudo apt-get update

sudo apt-get install git

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!