Git rebase fails, 'Your local changes to the following files would be overwritten by merge'. No local changes?

后端 未结 2 2065
无人及你
无人及你 2020-12-02 04:21

Here is my transcript from trying to merge my bugfix branch onto my master branch in preparation to push it upstream. There have been some upstream changes pulled into maste

相关标签:
2条回答
  • 2020-12-02 05:09

    With regards to Joshua Hogendorn's answer: it seems to me that leaving Xcode open while working on the repository with git leads to these problems. It even led to a situation where git committed something that I thought to have stashed (and still had afterwards) but Xcode just wrote to the filesystem right during the rebase.

    So: Close your Xcode project before you work on the repo with git if you want to be safe, and then you probably don't need the core.trustctime false setting.

    0 讨论(0)
  • 2020-12-02 05:11

    This is the same answer as another one of my questions re git troubles.

    I'm on a mac, and this obscure config change seemed to fix all my woes regarding unstaged changes when there were none.

    git config --global core.trustctime false
    

    I think it's to do with differences between windows file times, linux file times and mac file times. who knows, feel free to comment if you do.

    Update: This blog post explains what's going on, sort of.

    0 讨论(0)
提交回复
热议问题