Incomplete functionality of subversion.

Answered

Hello everybody. So there is a such problem. I have a project in SVN repository located on riouxsvn.com.  I have checked out my project and after that I tried to set up Subversion. I think I did something wrong because a can Commit/Update but I can`t add new file to VCS or ignore some files since that menu items are inactive. Here are my settingsP.S. you can see that there is no console menu in Version control tab. I also don`t know why it`s so like and I hope you would help me. Thanks.
P.P.S. svn plugin is enabled and svn command line client is default with mac os x 10.13

0
6 comments

According to the screenshots, some files appear Ignored in IDE.

CHeck the list in Settings - Version Control - Ignored files, most likely they are there, either explicitly, or by a petter/folder.

> you can see that there is no console menu in Version control tab

Could you please clarify what exactly you mean? Do you mean Console tab of the Version control toolwiindow? It appears only for git and mercurial

1
Avatar
Permanently deleted user

Yeah, there are some ignored file just out directory with compiled files.

Well, I thought that Console tab of Version control should be anyhow. Thank you for explanation.

I can`t add to ignore any file and add to vcs them but I can do this through third-party VCS client.

0

KeyController and UpRenderer are also marked as Ignored, that is why no svn operations available for it.

So they are either added to the mentioned list, or ignored via svn:ignore property.

Check svn status --no-ignore command to check if they are ignored on the svn level.

Then you could use svn proplist -v -R command to find what exact folder has the ignore property set.

 

1
Avatar
Permanently deleted user

Yeah, you`re right they are ignored on the svn level. I think that`s strange because I just added that files and did nothing else. How can I automatically add files to Subversion on creation. Here are my idea setting on it. Should I fix something in my repository or in settings?

0

> I just added that files and did nothing else

In svn, ignore property is a property of a folder. So if a folder has the property already with the appropriate pattern, new files added to the folder will be ignored with no user interaction.

> How can I automatically add files to Subversion on creation

The When files are created option in Confirmation should be set to Add silently. Note that it will work only when files are created via IDE. And this will not work if files are ignored on the svn level.

1
Avatar
Permanently deleted user

OMG yeah! Thank you very much! I have fixed it at last.

0

Please sign in to leave a comment.