问题:当我在任何文件中都没有文件时,将文件添加./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 ---
我注意到我的 Git 中没有文件“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 中都没有文件。
最后的警告是什么意思?