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

后端 未结 6 1517
失恋的感觉
失恋的感觉 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:25

    In my case, I got the error while running

    git cherry-pick -x   
    

    Running the cherry-picks independently works:

    echo    | xargs -n 1 git cherry-pick -x 
    

提交回复
热议问题