git本地删除后如何再pull下来_Git遇到错误时如何解决的一些坑

初学者总是不知道如何学习,我一直建议你要拥有一本属于自己的学习课本,不管是基础,还是提升。

f20ebaca346fdd5c762e01c81daa8aec.png

文章正文

在工作中,你总是与代码打交道,上传代码的时候,相信你不是用svn,就是用Git版本控制器,下面是最近这几天整理下来经常会遇到的Git的一些错误的解决访问,希望能帮助到你。

1 git pull遇到错误:error: Your local changes to the following files would be overwritten by merge:

方法1:如果你想保留刚才本地修改的代码,并把git服务器上的代码pull到本地(本地刚才修改的代码将会被暂时封存起来)

git stashgit pull origin mastergit stash pop

如此一来,服务器上的代码更新到了本地,而且你本地修改的代码也没有被覆盖,之后使用add,commit,push 命令即可更新本地代码到服务器了。

方法2、如果你想完全地覆盖本地的代码,只保留服务器端代码,则直接回退到上一个版本,再进行pull:

git reset --hardgit pull origin master

2 在git push origin master时出现以下这个问题时:

error: failed to push some refs to 'git@github.com:yangchao0718/cocos2d.githint: Updates were rejected because the tip of your current branch is behinhint: its remote counterpart. Integrate the remote changes (e.g.hint: 'git pull ...') before pushing again.hint: See the 'Note about fast-forwards' in 'git push --help' for details.

出现错误的主要原因是github中的README.md文件不在本地代码目录中 可以通过如下命令进行代码合并【注:pull=fetch+merge]

git pull --rebase origin mastergit push -u origin master

3 如果出现这样的错误:The file will have its original line endings in your working directory.

解决办法:

git rm -r --cached ./git config core.autocrlf falsegit add ./

git出现这样的错误:Git master branch has no upstream branch

$> git push

fatal: The current branch master has no upstream branch.

To push the current branch and set the remote as upstream, use

git push --set-upstream origin master

原因分析:没有将本地的分支与远程仓库的分支进行关联。出现这种情况主要是由于远程仓库太多,且分支较多。在默认情况下,git push时一般会上传到origin下的master分支上,然而当repository和branch过多,而又没有设置关联时,git就会产生疑问,因为它无法判断你的push目标。

解决: 方法一:(远程分支存在的情况才能使用)

# 查看要指向的 repositorygit remote -v # 查看所有分支git branch -agit push --set-upstream origin master# master: 远程branch# oringin: 在clone远程代码时,git为你创建的指向这个远程代码库的标签,它指向repository。

方法二:根据需要,替换origin和master,此方法的好处是即使远程没有你要关联的分支,它也会自动创建一个出来,以实现关联。

git push -u origin master

5 出现这个错误:! [rejected] master -> master (fetch first)

 ! [rejected] master -> master (fetch first)error: failed to push some refs to 'git@11.111.11.11:bboyHan/golang-data.git'hint: Updates were rejected because the remote contains work that you dohint: not have locally. This is usually caused by another repository pushinghint: to the same ref. You may want to first integrate the remote changeshint: (e.g., 'git pull ...') before pushing again.hint: See the 'Note about fast-forwards' in 'git push --help' for details.

原因分析:没有同步远程的master 解决:

git pull origin master

6 Git出现failed to push some refs to

描述:

$ git push -u origin masterTo git@github.com:******/Demo.git ! [rejected] master -> master (non-fast-forward)error: failed to push some refs to 'git@github.com:******/Demo.git'hint: Updates were rejected because the tip of your current branch is behindhint: its remote counterpart. Merge the remote changes (e.g. 'git pull')hint: before pushing again.hint: See the 'Note about fast-forwards' in 'git push --help' for details.

解决方法:

(1).使用强制push的方法:$ git push -u origin master -f 这样会使远程修改丢失,一般是不可取的,尤其是多人协作开发的时候。(2).push前先将远程repository修改pull下来$ git pull origin master$ git push -u origin master(3).若不想merge远程和本地修改,可以先创建新的分支:$ git branch [name]然后push$ git push -u origin [name]

7 Git出现fatal: refusing to merge unrelated histories的时候

描述:这是从远程库pull项目,合并文件发生的异常

解决方案:在pull的时候添加 --allow-unrelated-histories。

$ git pull origin master ----allow-unrelated-histories

这个功能是可以让大家不要把仓库上传错了,如果会加上这个代码,那么就是自己确定了上传。之前很容易就把代码传错了,现在可以看到,如果上传的不是之前的,那么就需要加代码。

8 当Git出现error:src refspec master does not match any 错误时:

描述:在push项目的时候,引发该异常。 原因分析:目录中没有文件,空目录是不能提交上去的,获取没有add、commit文件直接进行push了。 解决方案:

touch READMEgit add README git commit -m 'first commit'git push origin master

9 git时出现fatal: Authentication failed for 'https://github.com/ ...

描述:使用的https提交,在用SourceTree提交代码时候发生错误,返回的错误提示说:fatal:Authentication failed for'https://github.com/... 解决方案:重新执行Git config命令配置用户名和邮箱即可:

git config -–global user.name "xxx" git config –-global user.email "xxx@xxx.com"

以上分支看自己的而定,这里都是以master为主

7bd7a0bca56ce2404d3e4ec11b3deef1.png
  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值