为什么80%的码农都做不了架构师?>>>
今天想用git@osc push下测试下自己能否正常使用git@osc的git仓库的,公钥SSH 已经加好。
ssh -T git@git.oschina.net
测试正常。
结果报错could not read Username for 'https://git.oschina.net': No such file or directory,
然后又用了github账号试了下,还是提示这个,could not read Username for 'https://github.com': No such file or directory,这就纳闷了,之前用的好好的github,突然不行了。
网上搜了下,发现可能是git版本的原因:我的版本Git-1.8.5.2-preview20131230
突然想起来之前查过这个,记性不好,还是写下来吧。
解决方法:
git remote rm origin
git remote add origin 'git@github.com:username/repo.git'
成功上传。
以此备忘而已。