我从github克隆了3个repo并存储在g://code/
中,然后在远程github和g://code/
excute中创建了一个repo:
git init
git add remote origin git@github.com:xxx/xxxx.git "xxx" is my github username
git pull origin master
git add .
git status
那时,我看到输出,发现在git缓存系统中添加了一些文件但是没有添加一些文件。
我忽略了这个问题并编写了命令
git commit -m 'xxx'
git push origin master
我们浏览到我的github.com并找到一些文件添加到我的github仓库但有些文件没有。
问题是:
执行命令g://code/
后,git add .
目录有3个子目录,并查看git status
的结果
我找到1个子目录,所有文件都添加到git缓存中,但是其他子目录作为单个文件添加到git缓存中,子目录文件没有添加到git缓存中。
我不知道为什么?