Git svn fetch 检查是否没有剩余要合并的提交
我已经使用 git-svn 克隆了 svn 项目存储库。当我获取提交时,如何检查我所做的获取中的所有分支是否没有留下要合并的提交?
I have cloned a svn project repo using git-svn. When I fetch commits, how do I check that there are no commits to be merged left for all branches from the fetch I did?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
对于给定的分支,您可以在该分支的 HEAd 与您获取的内容之间进行比较:
或者如果您只想要文件名:
例如,
git-svn
的名称远程 svn 仓库。You could, for a given branch, diff between the HEAd of that branch and what you have fetched:
or if you just want the file names:
with, as an example,
git-svn
the name of the remote svn repo.