Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Folder is not under version control and is not part of the commit

Tags:

xcode

ios

svn

I'm developing an iOS app with XCode 4.2 and latest SDK.

I have added to my project a folder with several files. This folder is a real folder in Finder.

When I try to commit those files I get the following message:

svn: Commit failed (details follow):
svn: '/Users/User1/Fuentes/iPhone/Desarrollos/TurismoCR2/TurismoCR2/Descripciones' is not under version control and is not part of the commit, yet its child '/Users/User1/Fuentes/iPhone/Desarrollos/TurismoCR2/TurismoCR2/Descripciones/021es.html' is part of the commit

How can I fix this error?

Probably I could add these files and folder manually but I don't know how (and I don't want to make a mistake).

like image 976
VansFannel Avatar asked Feb 06 '12 10:02

VansFannel


1 Answers

You need to do:

cd /Users/User1/Fuentes/iPhone/Desarrollos/TurismoCR2/TurismoCR2

then:

svn add Descripciones/
like image 51
JDx Avatar answered Oct 11 '22 15:10

JDx