git リポジトリを作成し、vim-plugins (vundle によってインストールされます) を追加しました。このリポジトリを github にプッシュし、このリポジトリを別のサーバーにクローンした後、vim-plugin のディレクトリが空で、ディレクトリとファイルが下にあることがわかりました。 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
#
ご覧のとおり、dir のみが追加されます。
$ git commit -m'test'
$ git push -u origin master
そして、このレポを別の場所にクローンすると、空のディレクトリしか存在しません。
githubページはこちら