git 创建项目第一次上传文档出现fatal: No configured push destination. Either specify the URL from the command-line
·
最近由于疫情的原因,需要在家办公,我的老式电脑下载了各种办公需要的工具,在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,具体应情况而定,
到此就成功了!
更多推荐
已为社区贡献1条内容
所有评论(0)