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

  • Post author:
  • Post category:其他


最近由于疫情的原因,需要在家办公,我的老式电脑下载了各种办公需要的工具,在git的使用上遇到了一些问题,过程记录一下吧

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,具体应情况而定,

在这里插入图片描述

到此就成功了!



版权声明:本文为flyingLF原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。