淘先锋技术网

首页 1 2 3 4 5 6 7

在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目录下输入的~
在这里插入图片描述