How is this possible?
> svn status
? cp/app/cache
? cp/app/logs
> svn propget svn:ignore
cp/app/cache
cp/app/logs
order/app/cache
order/app/logs
It should ignore this 2 directories, but it shows them as unversioned.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You can’t set
svn:ignoreto file names located in subdirectories. Whatsvn:ignoreis saying is to ignore a file named “cp/app/cachethat sits in the current directory. Not a file namedcachethat sits in a directoryappwhich sites in a directorycp`. It literally means a file with two forward slashes in its name. Yes, this is illegal under Windows and Unix, but some operating systems do allow files with forward slashes in their names.If you really want to ignore those files, you need to set
svn:ignoretocacheandlogon the directoriescp/appandorder/app