I'm trying to install utilsnips.
When I type:
cd ~/.vim/ 
git submodule add https://github.com/SirVer/ultisnips bundle/ultisnips 
I get this message:
You need to run this command from the toplevel of the working tree.
Why? How can I avoid it?
I'm trying to install utilsnips.
When I type:
cd ~/.vim/ 
git submodule add https://github.com/SirVer/ultisnips bundle/ultisnips 
I get this message:
You need to run this command from the toplevel of the working tree.
Why? How can I avoid it?
 
    
    You might be running the command from a subdirectory. Make sure you are in the directory same level as the .git directory.
 
    
    Your .vim directory might not be a git directory.  To make it a git directory simply:
git init
Then you can run:
git submodule add https://github.com/SirVer/ultisnips bundle/ultisnips
