fortm
fortm

Reputation: 4198

replace existing nested folder in svn repository

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

Answers (1)

Robert
Robert

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

Related Questions