SVN

dev-env-resourcecode-management

# SVN添加忽略文件

参考文档 (opens new window)

SVN添加忽略文件,使得在SVN进行代码提交时, 不用提交配置的忽略文件(.idea *.iml target等)。

1

2

3

svn:global-ignores
1
target
.idea
.settings
.project
*.iml
*.log
.classpath
node_modules
dist
1
2
3
4
5
6
7
8
9