svn或git 提交文件排除


也可以参考  https://blog.csdn.net/chenmintong/article/details/79725324


乌龟git 过滤掉忽略文件(首先右键 某文件 删除并添加到忽略列表 会自动在根目录下创建一个.gitignore 文件 然后在这个文件里面添加忽略文件)

Properties
v15
obj
bin
*.[vs]
*.[cache]
*.[dll]
*.[json]
*.[pdb]
*.[props]
*.[targets]
*.[txt]


svn过滤项目中不必要文件提交 去svn中 setting设置
Properties v15 obj bin *.vs *.cache *.dll *.json *.pdb *.props *.targets *.txt
Properties

猜你喜欢

转载自www.cnblogs.com/llhhll/p/11281112.html