Невозможно отследить файлы в подмодулях Git

Problem: добавить файлы в./shells/smallApps/* Git в./.git/ когда у меня нет файлов в./.git/info/exclude ни в каком.gitignore -файлы.

Этот вопрос основан наэтот протектор где проблема не решена полностью.

я бегу

$git status                                                                                                                                          ~/bin
# On branch master
nothing to commit (working directory clean)
$git ls-files                                                                                                                                        ~/bin
Screen/dev/vim-open.screen
--- cut ---

Отмечу, что у меня нет файлов "shells / smallApps / *" на мой мерзавец

$ls shells/smallApps/                                                                                                                                ~/bin
devTodo     extract     
                                                                                                                                             ~/bin

Я хочу добавить их в мой Git, запустив

$git add shells/smallApps/devTodo shells/smallApps/extract
fatal: Path 'shells/smallApps/devTodo' is in submodule 'shells/smallApps'
$git add .         

Я отмечаю, что файлы не добавляются в мой Git по какой-то причине, так что

$git status                                                                                                                                          ~/bin 
# On branch master
nothing to commit (working directory clean)

У меня нет файлов ни в .git / info / exclude, ни в .gitignore -files.

What does the last warning mean?

Ответы на вопрос(3)

Ваш ответ на вопрос