当前位置:   article > 正文

码云Gitee 上传代码出现的错误(一)_error: cannot pull with rebase: you have unstaged

error: cannot pull with rebase: you have unstaged changes. error: please com

最近项目需要多人合作,需要找一个代码托管平台,公司选择了码云代码托管平台。在上传项目时,遇到的几个问题,在这里总结一下。

1. error: cannot pull with rebase: You have unstaged changes. error: please commit or stash them.

在代码提交更改后,需要不断获取最新代码,但是直接使用

git pull --rebase origin master
  • 1

会出现下面的错误提示:
在这里插入图片描述
这是因为你本地的更改没有提交,所以没有办法进行合并。

解决办法

  1. git add xx
  2. git commit -m "xx"
  3. git pull --rebase origin master

2. error: nothing added to commit but untracked files present

在提交代码时,出现如下错误提示&

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/羊村懒王/article/detail/558239
推荐阅读
相关标签
  

闽ICP备14008679号