如何知道 git 子模块提交是否已推送到存储库中

发布于 2024-11-10 06:52:52 字数 82 浏览 0 评论 0原文

假设您有一个名为 super 的存储库和一个名为 sub 的子模块。站在 super 中,我想知道子最后一次提交是否已经推送到存储库或者是否是本地的。

Suppose you have a repository called super and a submodule called sub. Stand in super, I'd like to know if sub last commit is already pushed to the repository or if it's local.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

梦魇绽荼蘼 2024-11-17 06:52:52

在超级>如果本地子模块与本地超级模块的提交子模块处于不同的提交点,“git status”将显示“已修改:子模块/子(新提交)”。

在子> “git log origin/master..master”将显示来自推送的“master”分支和本地“master”分支(如果有)的提交。

这能回答你的问题吗?如果没有,请澄清。

At super> "git status" will show you "modified: submodule/sub (new commits)" if the local sub is at a different commit point than the local super's committed submodule.

At sub> "git log origin/master..master" will show you commits from the pushed 'master' branch and local 'master' branch, if any.

Does this answer your question? If not, please clarify.

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