标签: git deployment web-deployment gitattributes
如何使用.gitattributes忽略父目录但在子目录中包含该目录?
例如,考虑一个/config目录。根目录有一个/config目录,另一个目录位于/app/config
/config
/app/config
添加
config export-ignore
将解决根/config的问题,但它也会删除子目录/app/config。
如何保留子目录/app/config?
答案 0 :(得分:1)
A leading slash matches the beginning of the pathname. For example, "/*.c" matches "cat-file.c" but not "mozilla-sha1/sha1.c".