您需要从工作树的顶层运行此命令

时间:2013-09-22 10:04:29

标签: vim

我正在尝试安装utilsnips

当我输入:

cd ~/.vim/ 
git submodule add https://github.com/SirVer/ultisnips bundle/ultisnips 

我收到此消息:

You need to run this command from the toplevel of the working tree.

为什么呢?我怎么能避免它?

2 个答案:

答案 0 :(得分:9)

您的.vim目录可能不是git目录。要简单地将其设为git目录:

git init

然后你可以运行:

git submodule add https://github.com/SirVer/ultisnips bundle/ultisnips

答案 1 :(得分:3)

您可能正在从子目录运行该命令。确保您位于与.git目录相同的目录中。