首页 > 其他 > 详细

Git 使用疑问

时间:2015-08-04 14:58:13      阅读:284      评论:0      收藏:0      [点我收藏+]

1)  fatal: remote origin already exists. 解决办法

..$ 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.
..$

 

Git 使用疑问

原文:http://www.cnblogs.com/tangkaixin/p/4701684.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!