一、使用git的使用上遇到了一些问题

git 创建项目第一次上传文档报错fatal: No configured push destination. Either specify the URL from the command-line

二、解决问题方法

git init
git clone '当前项目的git地址'


然后根据提示操作,输入了usename和password,继续
 

git add .

git commit -m ''

git push


一直OK,到了push的时候报错了

fatal: No configured push destination.
Either specify the URL from the command-line or configure a remote repository using

    git remote add <name> <url>

and then push using the remote name

    git push <name>


解决办法:

 git remote add origin 'http://git.....'
 git push -u origin master


这里创建的项目,是master身份,所以最后一句命令的远程分支名就写了master,具体应情况而定,完成

Logo

腾讯云面向开发者汇聚海量精品云计算使用和开发经验,营造开放的云计算技术生态圈。

更多推荐