把代码提交到码云
Posted huanhuan55
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了把代码提交到码云相关的知识,希望对你有一定的参考价值。
项目初始化git:git init 连接请求git:git remote add origin https://gitee.com/LHJ0315/AAA.git 更改远程路径:git remote set-url origin https://gitee.com/LHJ0315/AAA.git 强制提交代码:git push -u origin master --force 提交代码:git push origin master 产生如下错误: error: src refspec master does not match any. error: failed to push some refs to "xxxxxxx" 然后用如下方法解决了: git add . git commit -m "write your message"
以上是关于把代码提交到码云的主要内容,如果未能解决你的问题,请参考以下文章