I run ‘svn status’ and I get
? app/views/ad_report
But when I try to run ‘svn add app/views/ad_report’, it says it’s already in version control, but status just said it isn’t.
svn: warning: 'app/views/ad_report' is already under version control
There is a folder with the same name in a different path, ‘app/views/backend/ad_report’, but there are a lot of same folder names, but different path in this repo, and all those have been added.
Is svn getting these two folders mixed up? How do I get around this?
Did you move the folder from
app/views/ad_reporttoapp/views/backend/ad_reportbefore? If that’s true, did you copy the.svnfolder with it? That’s where it might be coming from. Either delete it or move it back and use thesvn movecommand to move it directly in the repo.