把代码提交到码云

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"

 

以上是关于把代码提交到码云的主要内容,如果未能解决你的问题,请参考以下文章

终端提交代码到码云

vscode文件提交项目到码云+将修改部分提交代码到仓库Push+Pull+克隆

将SVN的代码推送到码云的步骤

git 把某次提交的代码重新提交到其他的分支

如何将本地修改的代码提交到码云上一个共同维护的项目

代码管理git托管到码云(github)开源中国