Reputation: 89
I use Android Studio IDE with Subversion and I commit the Android Project.
But not all files will commit, because if I do a checkout in a other directory, many folders and files are missing like "res", "activity.xml"
Any suggestions?
Upvotes: 2
Views: 5943
Reputation: 89
Thank you for the answer.
I solved the problem by this way: Right click on a folder/file->Subversion->Add
After that, svn detects the change.
Upvotes: 3
Reputation: 30662
I guess that those items were added to svn:ignore
versioned property since they don't need to be version-controlled. See "How to manage projects under Version Control Systems".
Upvotes: 0