我正在尝试安装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.
为什么呢?我怎么能避免它?
答案 0 :(得分:9)
您的.vim
目录可能不是git
目录。要简单地将其设为git
目录:
git init
然后你可以运行:
git submodule add https://github.com/SirVer/ultisnips bundle/ultisnips
答案 1 :(得分:3)
您可能正在从子目录运行该命令。确保您位于与.git目录相同的目录中。