git svn 中待处理的是什么?
我想使用 git rebase -i 来压缩在 dcommitting 之前待处理的提交。然而,对我来说,哪些提交悬而未决并不是很明显。我是否缺少 git svn 选项,或者其他一些食谱?
I'd like to use git rebase -i to squash the commits that I have pending before dcommitting. It's not really obvious to me, however, which commits are hanging out there. Is there a git svn option I'm missing, or some other recipe?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 git svn dcommit --dry-run 查看 git svn dcommit 将推送哪些 Git 提交。您可以尝试如下所示的操作来显示将推送的所有提交的日志:
You can see which Git commits
git svn dcommit
will push usinggit svn dcommit --dry-run
. You could try something like the below to show the logs of all the commits that would be pushed: