MyEclipse修改文件后切换Git分支弹出提示框

项目场景:

MyEclipse正常切换Git分支没问题,但是修改文件后,再切换分支会弹出提示框

MyEclipse修改文件后切换Git分支弹出提示框_第1张图片

Checkout Conflicts

The files shown below have uncommitted changes which would be lost by checking out 'master'.

Either commit the changes, stash the changes, or discard the changes by resetting the current branch.

大概意思就是:签出冲突,文件有未提交的更改,这些更改将在签出“master”时丢失。


解决方案:

我们可以看到给出了4个选项:

Commit(提交更改)

Stash(隐藏更改)

Reset(重置当前分支来放弃更改)

Cancel(取消)

这里推荐Commit(提交更改),也可以先commit,但是不push

你可能感兴趣的:(问题,git,MyEclipse,切换分支,git分支)