zoukankan      html  css  js  c++  java
  • Please, commit your changes or stash them before you can merge. Aborting

    今天用git pull来更新代码,遇到了下面的问题:

    error: Your local changes to the following files would be overwritten by merge:
    xxx/xxx/xxx.java
    Please, commit your changes or stash them before you can merge.
    Aborting

    提示已经很友好了,从网友处得到的答案直接帮我解决问题。
    1.stash

    通常遇到这个问题,你可以直接commit你的修改;但我这次不想这样。

    看看git stash是如何做的。

    git stash
    git pull
    git stash pop
    接下来diff一下此文件看看自动合并的情况,并作出相应修改。

    git stash: 备份当前的工作区的内容,从最近的一次提交中读取相关内容,让工作区保证和上次提交的内容一致。同时,将当前的工作区内容保存到Git栈中。
    git stash pop: 从Git栈中读取最近一次保存的内容,恢复工作区的相关内容。由于可能存在多个Stash的内容,所以用栈来管理,pop会从最近的一个stash中读取内容并恢复。
    git stash list: 显示Git栈内的所有备份,可以利用这个列表来决定从那个地方恢复。
    git stash clear: 清空Git栈。此时使用gitg等图形化工具会发现,原来stash的哪些节点都消失了。

    2.放弃本地修改,直接覆盖之

    git reset --hard
    git pull


    原文链接:https://blog.csdn.net/lincyang/article/details/21519333

  • 相关阅读:
    pktgen使用指南
    常见的网卡调优
    网络PPS测试
    网络性能测试工具qperf
    设置虚拟机静态IP
    superset填坑
    js格式化
    《你不知道的JavaScript》读书笔记(一):JS是如何查找变量的
    技术分享PPT整理(三):网页渲染流程
    技术分享PPT整理(二):C#常用类型与数据结构
  • 原文地址:https://www.cnblogs.com/jsdy/p/12098993.html
Copyright © 2011-2022 走看看