如何知道 git 子模块提交是否已推送到存储库中
假设您有一个名为 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在超级>如果本地子模块与本地超级模块的提交子模块处于不同的提交点,“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.