git 无法继续变基,因为:无法执行todo命令

ergxz8rk  于 11个月前  发布在  Git
关注(0)|答案(1)|浏览(161)

我试图从master中进行rebase,在执行git rebase master后,我得到了返回:
错误类型:以下未跟踪的工作树文件将被合并覆盖:client/src/components/ui/organisms/Sidebar/customItems/payoutsBatchItems.tsx请在合并前移动或删除它们。中止提示:无法执行todo命令提示:提示:pick eadc 11822 d3455 ef 87 da 803 ba 2037 c 090 a2 e4 e80修复错误提示:提示:它已被重新安排;要在继续之前编辑命令,请提示:首先编辑todo列表:hint:hint:git rebase --edit-todo hint:git rebase --continue无法应用eadc 1182.
还有一个问题是,我的MR中的payoutsBatchItems.tsx的正确名称是PayoutsBatchItems,而不是payoutsBatchItems(大写P)。我不知道如何解决这个问题。有什么线索吗?

vq8itlhq

vq8itlhq1#

一个简单的解决方案是中止变基,重命名文件,然后重做变基:

git rebase --abort

git mv payoutsBatchItems.tsx PayoutsBatchItems.tsx
git commit -m "Rename file to correct case"

git rebase master

字符串
看看这是否足以让你完成变基。

相关问题