我创建了一个git repo并将vim-plugins(由vundle安装)添加到其中,之后我将此repo推送到github,并将此repo克隆到另一台服务器,我发现vim-plugin的目录为空,dirs和vim-plugin目录下的文件都缺失
如何制作它:
$ make a new test user in Linux, then ( su - test )
$ git clone https://github.com/gmarik/vundle.git ~/.vim/bundle/vundle # install vundle
$ echo "
set nocompatible
filetype off
set rtp+=~/.vim/bundle/vundle/
call vundle#rc()
Bundle 'gmarik/vundle'
Bundle 'Lokaltog/vim-powerline'
filetype plugin indent on
" >> .vimrc
$ vim # run vim command `:BundleInstall`
$ mkdir vimgitrepo && cd vimgitrepo && git init
$ cp -a ~/.vim/bundle .
$ git status
# On branch master
# Untracked files:
# (use "git add <file>..." to include in what will be committed)
#
# bundle/
nothing added to commit but untracked files present (use "git add" to track)
$ git add .
$ git status
# On branch master
# Changes to be committed:
# (use "git reset HEAD <file>..." to unstage)
#
# new file: bundle/vim-powerline
# new file: bundle/vundle
#
如您所见,只添加目录。
$ git commit -m'test'
$ git push -u origin master
如果你在另一个地方克隆这个仓库,只有空目录。
答案 0 :(得分:4)
您将整个目录复制到您的仓库中,这是其他git仓库,其中包含.git/
目录。
所以你有两种方法可以解决它:
git submodule
,将它们设置为子模块。.git/
。