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,具体应情况而定,
到此就成功了!
新一代开源开发者平台 GitCode,通过集成代码托管服务、代码仓库以及可信赖的开源组件库,让开发者可以在云端进行代码托管和开发。旨在为数千万中国开发者提供一个无缝且高效的云端环境,以支持学习、使用和贡献开源项目。
更多推荐


所有评论(0)