[工作点滴]ssh/http clone本地项目的切换

问题原因:remote.origin.url不是以http的形式访问
解决办法:将remote.origin.url修改成http的形式访问,在项目下有个隐藏的.git文件夹,修改config:
remote.origin.url=http://[email protected]/echo/echo.git
修改命令(在项目目录下):
ls -al
cd .git
vim config
修改完后查看:vim config

你可能感兴趣的:(工作点滴)