ubuntu install git

prepare

1
2
apt-get update -y
apt-get upgrade -y

install

1
apt install git
1
git --version

生成SSH密钥

1
2
git config --global user.name "luochunhai"
git config --global user.email "469608976@qq.com"
1
ssh-keygen -t rsa -C "469608976@qq.com"
1
cat ~/.ssh/id_rsa.pub

添加密钥到GitHub

打开 Github,登录自己的账号后
点击自己的头像->settings->SSH And GPG Keys->New SSH key

将本地 id_rsa.pub 中的内容粘贴到 Key 文本框中,随意输入一个 title(不要有中文),点击 Add Key 即可

centos里测试验证
1
ssh git@github.com

评论