git修改ssh和https上传模式

在git-bash中修改访问方式也就是修改remote方式(https或者ssh):

查看当前的remote方式

git remote -v

1.修改为https:

git remote set-url origin https://github.com/aimi-cn/AILearners.git

2.修改为ssh:

git remote set-url origin [email protected]:aimi-cn/AILearners.git

注:上面命令origin后面的地址是你自己github项目下的clone or download对应的地址,自行修改,命令是在对应的git目录下输入的~
git修改ssh和https上传模式_第1张图片

你可能感兴趣的:(Git)