如何在 Windows GUI 中进行 rebase --interactive

发布于 2024-11-16 10:35:47 字数 237 浏览 2 评论 0原文

我有一位同事非常喜欢 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

美人如玉 2024-11-23 10:35:47

没有办法通过 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文