我的文件夹结构如下:
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
@Service
public class MyService {
@Autowired
private MyRepository myRepository;
public MyClass save(MyClass myClass) {
return myRepository.save(myClass); // save() should persist my object into the database
}
}
在这种情况下,我想排除所有AdditionalThings / Tables /目录内的所有文件。
我尝试做 添加的东西/表
和
/ AddedThings / Tables
我没有运气。有人可以帮忙吗?
答案 0 :(得分:1)
.tfignore
文件将忽略 all 子目录中的给定模式。并且它将忽略具有给定名称的文件或文件夹。对于文件夹,它将以递归方式应用。
因此,.tfignore
具有:
Tables
这将忽略文件系统层次结构中任何名为Tables
的文件夹,并将递归忽略它们。
对于不在Addedthings/Tables
下的Tables文件夹,您可以在子文件夹中创建.tfignore文件,以覆盖父文件夹中.tfignore文件的效果。
注意:
除非使用\
字符作为前缀,否则文件规范是递归的。
此.tfignore
文件不会受到源代码管理中已存在的那些文件的影响。您需要先从源代码管理中删除它们。另外,请确保您的.tfignore文件已签入源代码管理。