Codejoy
Codejoy

Reputation: 3816

SVN stops realizing a directory has a new file, so add on parent folder does not find files

I used to be able to use the tortoiseSVN add on the parent folder o my project and it would find all files new that needed to be added them, give me a list and I could click okay. Now if I do this it says no new files, and yet I know there are and have to manually goto the file and add it. Was it a setting change I am unaware of, I am not even sure what the parent down method of adding is called (subdirectories? but the add doesnt give that option) . This is a WAG I am taking posting here grasping at straws...my project is getting large and remembering all the files I added to the Unity project is getting tedious, not sure what stopped it from working the other way...

Upvotes: 1

Views: 232

Answers (1)

Lazy Badger
Lazy Badger

Reputation: 97282

  1. With TortoiseSVN, you can do not add explicitly new files in WC before commit - TSVN will discover new files for you automatically
  2. SVN (TortoiseSVN) will skip files, if they match ignore-pattern (global or local): svn status|svn status --no-ignore inside folder in question may help you detect such ignored files

Upvotes: 1

Related Questions