想要跟踪.gitignore

时间:2016-09-17 10:10:24

标签: git bitbucket gitignore

我有一个文件夹public/lib被GIT忽略,因为我在.gitignore文件中添加了以下内容:

public/lib

我做了初步的承诺&将更改推送到远程存储库。后来意识到我需要在public/lib中提交一个名为templates的文件夹。然后为 Make .gitignore ignore everything except a few files

找到了这种方法

将我的.gitignore文件更改为:

public/lib
!public/lib/template/**/*

这对我没有帮助。我在下一个template看不到GIT考虑的git status文件夹。

我是Git的新手。

1 个答案:

答案 0 :(得分:1)

你的子目录的白名单看起来有点偏离我。试试这个:

public/lib              # blacklist public/lib folder
!public/lib/template    # but exclude the template subfolder