Git warning of file overwriting due to (supposedly) untracked files

前端 未结 4 1237
南旧
南旧 2021-01-18 21:38

Attempting to pull from git repo, but getting the following output. I think these files are tracked (As they should be), but its indicating that they are not. They are not i

4条回答
  •  被撕碎了的回忆
    2021-01-18 21:50

    They're tracked in the version you're checking out, but not in the version you had checked out previously. If you don't care about the untracked versions, just remove them.

    If you do care about them, commit them before doing the rebase. You may then have to merge as part of the rebase process.

提交回复
热议问题