ubuntu git

安装

apt-get install python-software-properties
apt-get install software-properties-common
add-apt-repository ppa:git-core/ppa
apt-get update
apt-get install git
git --version

设置全局名称

$ git config --global user.name "用户名或者用户ID"
$ git config --global user.email "邮箱"
这里汉字的地方都换成自己的github账户

密钥

使用命令:$ ssh-keygen -C 'you email [email protected]' -t rsa会在用户目录 ~/.ssh/ 下建立相应的密钥文件.可以使用
$ ssh -v [email protected] 命令来测试链接是否畅通。

上传公钥

在 github.com 的界面中 选择 Settings,然后选择 SSH and GPG Keys ,选择新加。 Title 可以随便命名,Key 的内容拷贝自 ~/.ssh/id_rsa.pub 中的内容,完成后,可以再使用
ssh -v [email protected] 进行测试。看到下面的信息表示验证成功。

Hi xiaolong3000! You've successfully authenticated, but GitHub does not provide shell access.

你可能感兴趣的:(ubuntu git)