简体   繁体   中英

svn:global-ignores not working?

I've added bin obj to my root folders
But when I Check for modifications, the obj folder still show up. What happen and what I can do for make it ignore bin & obj folder recursively for all my workingcopy?
I'm using svn version 1.10.0-dev with TortoiseSVN 1.10.0, Build 28176 - 64Bit, 2018/04/14 08:00:32 on Windows 10 64bit.

我已将bin obj添加到我的根文件夹中obj文件夹显示版

The subversion global-ignores contains collection of file patterns.

The subversion client checks these patterns agains the names of the files that are candidates for addition to the version control and unversioned files.

In your case if you are still seeing the files bin and object files in your root folder at the repository(not the working copy). This means you have added them to version control and after successful addition to version control you have added these patterns of bin and obj to the global-ignores list.

Now you would need to manually un-versioned them first and then do your normal commits and the files with the pattern bin and obj will not be added.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM