gpt4 book ai didi

icons - GitLab - 损坏提交后的奇怪图标和条目

转载 作者:行者123 更新时间:2023-12-04 23:50:15 36 4
gpt4 key购买 nike

我试图在我的仓库(在文件 View 中)中找到以下 gitlab 条目的描述:

Screenshot from gitlab

我相信这个文件已损坏,因为我在树中“嵌套”了 git repos,或者更好的是,不止一个 .git 文件(如果这有意义的话)。

但老实说,我什至不知道用谷歌搜索什么:P
然后我在stackoverflow上快速浏览了这里的响应,但我也没有看到。有人可以告诉我在哪里可以找到这些描述或告诉我它的含义吗?我不确定删除它是否会导致 repo 的其余部分损坏或其他一些链式效应。 GitLab 版本是 6.2.4。

提前致谢,

迈克尔

最佳答案

这是一个 git submodule ,您可以键入:

git ls-tree HEAD -- ws-dom-full

您将看到 gitlink, that is a special entry in the index它记录了子模块 repo 的 sha1。 (模式 160000)

当您克隆父存储库时,该文件夹为空。
你需要:
git submodule update --init

然后您将看到子模块内容。

remove a submodule (来自索引和磁盘):
git submodule deinit -- ws-dom-full
git rm -- ws-dom-full
git add -u .
git commit -m "Remove ws-dom-full submodule"
git push

关于icons - GitLab - 损坏提交后的奇怪图标和条目,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24242490/

36 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com