正如我被告知的那样,git 无法识别文件夹本身。为了让文件夹在 repo 上,而不是里面的文件,我们确实在该文件夹内创建了一个 .gitignore 文件,其中包含以下内容:
# Ignore everything in this directory
*
# Except this file
!.gitignore
然而,在那个目录中,我们现在需要添加一个应该被 git 跟踪的新文件。
我们该如何进行?
我们应该按照以下顺序执行步骤吗?
改成:
# Ignore everything in this directory * # Except this file !.gitignore !mynewfile.php
git add mynewfile.php
git commit -a -m "added new file inside specific folder"
git push
(以便我的远程集线器知道这一点并与主服务器同步,以便所有人保持平等)。
或者,我们应该采取不同的方式吗?