git cherry-pick says local changes exist, but git status says nothing

后端 未结 6 1515
失恋的感觉
失恋的感觉 2021-02-20 02:17
$ git cherry-pick 5de83068
error: Your local changes to the following files would be overwritten by merge:
        Components/ApplicationEnums/Application.cs
Please, commit yo         


        
6条回答
  •  一生所求
    2021-02-20 02:22

    I'm not quite sure whats the problem but you can reset your working copy with the follwing statement:

    git reset --hard origin/master
    

提交回复
热议问题