Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有人设法使用 Git Extensions 进行交互式变基?
变基时选项可用,但每当我选择最后 n 次提交时,在变基窗口中选择“交互式”,编辑器会弹出“noop”注释而不是提交行。
我哪里错了?
默认情况下,Git 扩展将分支设置为基于您当前正在处理的分支。所以,除非你改变它,否则你无事可做,你会得到这个“noop”消息。您必须针对不是您当前的 HEAD 的东西重新设置基准。要么是从你的脑海中返回的一些提交(例如 HEAD~4),要么是你的分支的源版本(例如:origin/master)或特定的命名提交。