如何在 Windows GUI 中进行 rebase --interactive
我有一位同事非常喜欢 Windows 的 git GUI 界面;我想让他以交互方式变基,这样他就可以压缩提交。
我尝试使用 Tools->Add
来添加 git rebase --interactive
但当他尝试时,这只是挂起。客户端可以处理交互式变基吗?是否有其他适用于 Windows 的 GUI 客户端可以做到这一点?或者也许有另一种方式来压缩客户端中的提交?
I have a co-worker who's wedded to the git GUI interface for Windows; I'd like to get him rebasing interactively so he can squash commits.
I've tried using the Tools->Add
to add git rebase --interactive
but this just hangs when he tries it. Can the client handle interactive rebases? Is there another GUI client for Windows that can? Or perhaps there is another way to squash commits in the client?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
没有办法通过 gui 来做到这一点。也就是说,有一些方法可以在没有交互式变基的情况下压缩提交。例如,可以在 3 次提交前执行重置 --soft,将所有内容添加到索引并提交。这将有效地压缩最后 3 次提交。
There is no way to do it through the gui. That said, there are ways to squash commits without the interactive rebase. For instance, one could do a reset --soft 3 commits ago, add everything to the index and commit. This would effectively squash the last 3 commits.