git命令登录

1. 执行登陆用户名和密码命令

git config --global user.email "[email protected]"
git config --global user.name "Your Name"

2. 生成密钥对

ssh-keygen -t rsa -C "[email protected]"

3. 配置公钥私钥

git命令登录_第1张图片
然后将 .ssh/id_rsa.pub中的内容复制到下图中的key中,并点击Add SSH key

git命令登录_第2张图片

4. 检测密钥对是否可以使用:

ssh -T [email protected]

5. 使用命令 git remote -v 查看你当前的 remote url

git remote -v

6.克隆代码

git clone xxx.git

你可能感兴趣的:(git,git,bash,github)