svn中的ignore

时间:2022-06-01 19:04:41

首先,svn GUI菜单右键的ignore功能,写的模模糊糊,网上也没啥人给出清晰的解释,*推荐用命令行控制

SVN有3中方法配置ignore

1.配置文件

C:\Users\{you}\AppData\Roaming\Subversion\config

这个只是本地客户端端,

2.svn:ignore

如果带recursively,在执行目录的子目录也应用这个规则.

如果子目录也定义了自己的svn:ignore规则,子目录的覆盖父目录的

相当于git的.gitignore

3.svn:ignore

全局的忽略参数

相当于所有版本库+svn:ignore+recursively

参考:

http://*.com/questions/86049/how-do-i-ignore-files-in-subversion

http://svnbook.red-bean.com/nightly/en/svn.advanced.props.special.ignore.html