Reputation: 4198
I have following folder structure :
-framework ( nested folder)
-app
I have to commit whole framework folder in svn using Eclipse/ command line. I don't have idea what files are changed in framework and it is about 3 MB in size.
Upvotes: 0
Views: 113
Reputation: 42605
SVN works always on the whole directory including subdirectories and commits all changed files.
Have you tried to just execute svn commit framework
?
Upvotes: 1