###(一)安装git
##方法一:使用apt 安装
#安装git
sudo apt-get update
sudo apt-get install git
##方法二:使用下载安装
#依赖库
sudo apt-get update
sudo apt-get install build-essential libssl-dev libcurl4-gnutls-dev libexpat1-dev gettext unzip
#复制git 的链接地址 https://github.com/git/git/archive/master.zip
#下载
wget https://github.com/git/git/archive/v1.9.2.zip -O git.zip unzip git.zip cd git-*
#安装
make prefix=/usr/local all
sudo make prefix=/usr/local install
#更新旧版本
make prefix=/usr/local all
sudo make prefix=/usr/local install
#配置 github
git config --global user.name "Your Name" git config --global user.email "[email protected]"
#查看配置信息
git config --list
#编辑配置信息
nano ~/.gitconfig
#修改
[user] name = Your Name email = [email protected]
#创建公钥--这会在 用户目录 ~/.ssh/ 下建立相应的密钥文件
ssh-keygen -C ‘you email [email protected]‘ -t rsa
#上传公钥
在 github.com 的界面中 选择右上角的 Account Settings,然后选择 SSH Public Keys ,选择新加。
Title 可以随便命名,Key 的内容拷贝自 ~/.ssh/id_rsa.pub 中的内容,完成后,可以再使用
ssh -v [email protected]
进行测试。看到下面的信息表示验证成功。
...
Exit status 1
参照:https://www.digitalocean.com/community/tutorials/how-to-install-git-on-ubuntu-14-04