标签:
..$ git remote add origin git@git.*.com:tang/comment_server.git
..$ git push -u origin master
git@git.*.com‘s password:
Permission denied, please try again.
git@git.*.com‘s password:
Permission denied, please try again.
git@git.*.com‘s password:
Permission denied (publickey,password).
fatal: Could not read from remote repository.
Please make sure you have the correct access rights
and the repository exists.
..$
解决办法
..$ git remote rm origin
..$ git remote add origin http://git.*.com/tang/comment_server.git
..$ git push -u origin master
Counting objects: 3, done.
Delta compression using up to 24 threads.
Compressing objects: 100% (2/2), done.
Writing objects: 100% (3/3), 289 bytes | 0 bytes/s, done.
Total 3 (delta 0), reused 0 (delta 0)
To http://git.*.com/tang/comment_server.git
* [new branch] master -> master
Branch master set up to track remote branch master from origin.
..$
标签:
原文地址:http://www.cnblogs.com/tangkaixin/p/4701684.html