未记录的 gitweb 输出:树列表中尾随 m

未记录的 gitweb 输出:树列表中尾随 m

我有一个 git 存储库,其中显然一切都很好(我不关心 piwik 列出的文件):

# git status
On branch master
Changes not staged for commit:
  (use "git add <file>..." to update what will be committed)
  (use "git checkout -- <file>..." to discard changes in working directory)

        modified:   piwik/tmp/cache/tracker/piwikcache_1.php
        modified:   piwik/tmp/cache/tracker/piwikcache_general.php

no changes added to commit (use "git add" and/or "git commit -a")

但是,有一个子目录未被 git 跟踪,其中没有任何 .gitignore 文件,也没有任何全局忽略规则。

在 gitweb 中,每个其他目录都按以下方式列出:

drwxr-xr-x  -   gooddir tree | history

而未跟踪的列表如下:

m---------  -   failingdir  history

与其他目录不同,它里面没有链接,点击历史记录我得到:

500 - Unknown type of object 

后面的 m 是什么意思?我在文档中找不到它

为什么目录未被跟踪?

答案1

gitweb 中显示的目录m---------实际上是子模块

相关内容