私の持っているすべてのコンピュータに.vimフォルダを同期したいだけです。これらは私がその目的のために行ったものです:1. cp -r〜/ .vim〜/ GitRepository/2. cd〜/ GitRepository 3. git add --all 4.コミットしてプッシュします。しかし私がgithubをチェックすると、それらのファイルは/.vim/subdir/sub-subdirの下にあるはずです。そしてそれらのsub-subdirは空になった。私はこの.gitignoreファイルと提案を持っていませんが、これを行うことができますこれはlink私に助けをしないでください。"git add -all"コマンドは、私のGitRepository/.vim/subdir/sub-subdirの下にファイルを追加しません。
git statusと入力すると。これらのメモが表示されます:
─➤ git status
On branch master
Your branch is up-to-date with 'origin/master'.
Changes not staged for commit:
(use "git add <file>..." to update what will be committed)
(use "git checkout -- <file>..." to discard changes in working directory)
(commit or discard the untracked or modified content in submodules)
modified: .vim/bundle/vim-snippets (modified content)
no changes added to commit (use "git add" and/or "git commit -a")
どうしますか?
=============第2の編集============= ありがとう"git add -all"は実際に私が持っているドットファイルを見逃していました。しかし、それは私の問題を克服しません。ここ
は、私はgitのを入力した後/
╰─➤ git status
On branch master
Your branch is up-to-date with 'origin/master'.
Changes to be committed:
(use "git reset HEAD <file>..." to unstage)
new file: .vim/.netrwhist
new file: .vim/.vimrc
new file: .vim/.ycm_extra_conf.py
new file: .vim/.ycm_extra_conf.pyc
new file: .vim/bundle/Vundle.vim
new file: .vim/bundle/YouCompleteMe
new file: .vim/bundle/ctrlp.vim
new file: .vim/bundle/molokai
new file: .vim/bundle/nerdtree
new file: .vim/bundle/tagbar
new file: .vim/bundle/ultisnips
new file: .vim/bundle/vim-airline
new file: .vim/bundle/vim-colorschemes
new file: .vim/bundle/vim-fugitive
new file: .vim/bundle/vim-json
new file: .vim/bundle/vim-snippets
new file: .vim/colors/molokai.vim
new file: .vim/colors/solarized.vim
Changes not staged for commit:
(use "git add <file>..." to update what will be committed)
(use "git checkout -- <file>..." to discard changes in working directory)
(commit or discard the untracked or modified content in submodules)
modified: .vim/bundle/vim-snippets (modified content)
を追加して.vim何それ縫い目ディレクトリとしてこれらを認識しないことgitのは、なぜ?
もしあなたが.gitignoreを持っておらず、ダミーファイルを気にしないなら、 'git add。 -f ' – ElpieKay
[C++でビッグエンディアンとリトルエンディアンの値を変換するにはどうすればよいですか?](http://stackoverflow.com/questions/105252/how-do-i-convert-between-big- endian-and-little-endian-values-in-c) –