Reputation: 2106
Today I found that whatever new files added to my repository will not be picked up by tortoisesvn.
There are no ignore patterns for *.cs files (either globally or locally). Yet any new file is marked as non-versioned.
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
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
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