Git svn fetch 检查是否没有剩余要合并的提交

发布于 2024-12-18 00:13:15 字数 72 浏览 3 评论 0原文

我已经使用 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 技术交流群。

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

发布评论

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

评论(1

海未深 2024-12-25 00:13:15

对于给定的分支,您可以在该分支的 HEAd 与您获取的内容之间进行比较:

git diff ..remotes/git-svn

或者如果您只想要文件名:

git diff ..remotes/git-svn --name-status

例如,git-svn 的名称远程 svn 仓库。

You could, for a given branch, diff between the HEAd of that branch and what you have fetched:

git diff ..remotes/git-svn

or if you just want the file names:

git diff ..remotes/git-svn --name-status

with, as an example, git-svn the name of the remote svn repo.

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