5

尝试按照git book中的说明更改子模块

$ git rm -r vendor/html-minifier
$ git submodule add https://github.com/kangax/html-minifier.git vendor/html-minifier

但它失败了

rm 'vendor/html-minifier'
fatal: git rm: 'vendor/html-minifier': Is a directory
4

1 回答 1

5

来自http://txt.binnyva.com/2008/07/remove-a-folder-from-git/

git rm -r vendor/html-minifier/.

或者也许(来自https://serverfault.com/questions/256421/cant-git-rm-a-directory

git rm --cached -r dirname
于 2012-05-11T08:48:08.517 回答