foresightyj
foresightyj

Reputation: 2106

tortoisesvn marks all newly added files as "non-versioned"

Today I found that whatever new files added to my repository will not be picked up by tortoisesvn.

enter image description here

There are no ignore patterns for *.cs files (either globally or locally). Yet any new file is marked as non-versioned.

enter image description here

Now, I can only include all newly added files manually. This problem is driving me crazy. Hope someone can point out what I am missing here.

Upvotes: 2

Views: 5330

Answers (2)

Greg Trevellick
Greg Trevellick

Reputation: 1401

If you are using Visual Studio, you can install the AnkhSVN Extension, and this will allow you to add the file to your SVN repository directly within Visual Studio. This saves you having to separately add to SVN via the Tortoise client or via Windows Explorer.

You can even configure the extension to auto-add new files to SVN !

Upvotes: 0

bahrep
bahrep

Reputation: 30662

You have to explicitly tell Subversion to begin tracking the file by running svn add or via Add command in TortoiseSVN.

Upvotes: 2

Related Questions