I have a folder dotfiles where I keep my configuration files like .vimrc. Now in my current version on the master there is an empty folder dotfiles/.vim/bundle/vim-colors-solarized/
I wanted to add files to this folder (so that the solarized color scheme actually works), so I went to the bundle directory and cloned the solarized github project
$ cd dotfiles/.vim/bundle
$ git clone git://github.com/altercation/vim-colors-solarized.git
Now, the folder bundle/vim-colors-solarized is actually filled with files. Weirdly, when I go back to the dotfiles folder and ask for git status it says that everything is up to date with the master branch and that there is nothing to commit.
Is this because I cloned a git project in stead of actually copying those files?