请参阅以下实线以了解我的原始问题。

我的本地目录中有一个未跟踪的文件夹。当我运行 git status 时,我得到:

Changed but not updated:
modified:   vendor/plugins/open_flash_chart_2 (modified content, untracked content)

当我输入 git add vendor/plugins/open_flash_chart_2 然后再次尝试 git status 时,它仍然说未跟踪。这是怎么回事?

这是我最近半小时的简单总结:
  • 发现我的 Github 仓库没有跟踪我的 vendor/plugins/open_flash_chart_2 插件。具体来说,没有内容,它在文件夹图标上显示一个绿色箭头。
  • 尝试过 git submodule init
    No submodule mapping found in .gitmodules for path 'vendor/plugins/open_flash_chart_2'
    
  • 尝试过 git submodule add git://github.com/korin/open_flash_chart_2_plugin.git vendor/plugins/open_flash_chart_2
    vendor/plugins/open_flash_chart_2 already exists in the index
    
  • git status
    modified: vendor/plugins/open_flash_chart_2 (untracked content)
    
  • 在我的存储库/本地目录中寻找任何名为 .gitmodules 的文件,但找不到。

  • 我该怎么做才能让我的子模块正常工作,这样 git 才能开始正确跟踪?

    这可能是无关的(我把它包括在内,以防它有帮助),但是每次我输入 git commit -a 而不是我通常的 git commit -m "my comments" 时,它都会抛出一个错误:
    E325: ATTENTION
    Found a swap file by the name ".git\.COMMIT-EDITMSG.swp"
             dated: Thu Nov 11 19:45:05 2010
         file name: c:/san/project/.git/COMMIT_EDITMSG
          modified: YES
         user name: San   host name: San-PC
        process ID: 4268
    While opening file ".git\COMMIT_EDITMSG"
             dated: Thu Nov 11 20:56:09 2010
      NEWER than swap file!
    Swap file ".git\.COMMIT_EDITMSG.swp" already exists!
    [O]pen Read-Only, (E)dit anyway, (R)ecover, (D)elete it, (Q)uit, (A)bort:
    Swap file ".git\.COMMIT_EDITMSG.swp" already exists!
    [O]pen Read-Only, (E)dit anyway, (R)ecover, (D)elete it, (Q)uit, (A)bort:
    

    我是 Github 的完全新手,尽管我试图阅读文档,但我还是被这些特殊问题难住了。谢谢你。

    最佳答案

    您已将 vendor/plugins/open_flash_chart_2 添加为“gitlink”条目,但从未将其定义为子模块。实际上,您正在使用 git submodule 使用的内部功能(gitlink 条目),但您没有使用子模块功能本身。

    你可能做了这样的事情:

    git clone git://github.com/korin/open_flash_chart_2_plugin.git vendor/plugins/open_flash_chart_2
    git add vendor/plugins/open_flash_chart_2
    

    最后一个命令是问题所在。目录 vendor/plugins/open_flash_chart_2 最初是一个独立的 Git 存储库。通常这样的子存储库会被忽略,但是如果你告诉 git add 显式添加它,那么它会创建一个指向子存储库 HEAD 提交的 gitlink 条目,而不是添加目录的内容。如果 git add 拒绝创建这样的“半子模块”可能会很好。

    普通目录在 Git 中表示为树对象;树对象为其包含的对象提供名称和权限(通常是其他树和 blob 对象——分别是目录和文件)。子模块表示为“gitlink”条目; gitlink 条目仅包含子模块的 HEAD 提交的对象名称(哈希)。 gitlink 提交的“源存储库”在 .gitmodules 文件(子模块初始化后的 .git/config 文件)中指定。

    您拥有的是一个指向特定提交的条目,而不记录该提交的源存储库。您可以通过将 gitlink 放入适当的子模块,或通过删除 gitlink 并将其替换为“正常”内容(纯文件和目录)来解决此问题。

    把它变成一个合适的子模块

    vendor/plugins/open_flash_chart_2 正确定义为子模块的唯一缺失是 .gitmodules 文件。通常(如果您还没有将其添加为裸 gitlink 条目),您只需使用 git submodule add :
    git submodule add git://github.com/korin/open_flash_chart_2_plugin.git vendor/plugins/open_flash_chart_2
    

    如您所见,如果该路径已存在于索引中,这将不起作用。解决办法是暂时从索引中删除gitlink条目,然后添加子模块:
    git rm --cached vendor/plugins/open_flash_chart_2
    git submodule add git://github.com/korin/open_flash_chart_2_plugin.git vendor/plugins/open_flash_chart_2
    

    这将使用您现有的子存储库(即它不会重新克隆源存储库)并暂存一个 .gitmodules 文件,如下所示:
    [submodule "vendor/plugins/open_flash_chart_2"]
        path = vendor/plugins/open_flash_chart_2
        url = git://github.com/korin/open_flash_chart_2_plugin.git vendor/plugins/open_flash_chart_2
    

    它还将在您的主存储库的 .git/config(没有 path 设置)中创建一个类似的条目。

    提交它,您将拥有一个适当的子模块。当您克隆存储库(或推送到 GitHub 并从那里克隆)时,您应该能够通过 git submodule update --init 重新初始化子模块。

    用纯内容替换它

    下一步假设您在 vendor/plugins/open_flash_chart_2 中的子存储库没有您想要保留的任何本地历史记录(即,您只关心子存储库的当前工作树,而不是历史记录)。

    如果您关心的子存储库中有本地历史记录,那么您应该备份子存储库的 .git 目录,然后在下面的第二个命令中将其删除。 (还要考虑下面的 git subtree 示例,它保留了子存储库的 HEAD 的历史记录)。
    git rm --cached vendor/plugins/open_flash_chart_2
    rm -rf vendor/plugins/open_flash_chart_2/.git # BACK THIS UP FIRST unless you are sure you have no local changes in it
    git add vendor/plugins/open_flash_chart_2
    

    这次添加目录的时候,不是子仓库,所以文件会正常添加。不幸的是,由于我们删除了 .git 目录,因此没有 super 简单的方法可以让源代码库保持最新状态。

    您可以考虑使用 subtree merge 代替。这样做可以让您轻松地从源存储库中提取更改,同时保持存储库中的文件“扁平”(无子模块)。第三方 git subtree command 是子树 merge 功能的一个很好的包装器。
    git rm --cached vendor/plugins/open_flash_chart_2
    git commit -m'converting to subtree; please stand by'
    mv vendor/plugins/open_flash_chart_2 ../ofc2.local
    git subtree add --prefix=vendor/plugins/open_flash_chart_2 ../ofc2.local HEAD
    #rm -rf ../ofc2.local # if HEAD was the only tip with local history
    

    之后:
    git remote add ofc2 git://github.com/korin/open_flash_chart_2_plugin.git
    git subtree pull --prefix=vendor/plugins/open_flash_chart_2 ofc2 master
    
    git subtree push --prefix=vendor/plugins/open_flash_chart_2 [email protected]:me/my_ofc2_fork.git changes_for_pull_request
    

    git subtree 还有一个 --squash 选项,它可以让你避免将源存储库的历史记录 merge 到你的历史记录中,但仍然允许你引入上游更改。

    关于git - 如何跟踪未跟踪的内容?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/4161022/

    10-13 05:22