Reputation: 85
I have to replace new DLLs from src/lib/dlls to SVN. I added the DLLs to SVN from the dlls
folder. For committing the changes to SVN, should I commit the src
folder or the lib
folder to see the changes in SVN?. Also, how do I handle the missing DLLs (the DLLs that I replaced)?
Upvotes: 0
Views: 74
Reputation: 3821
both will work. committing at an upper level will commit all the changes made at lower level directories unless --non-recursive switch is supplied
http://svnbook.red-bean.com/en/1.2/svn.ref.svn.c.commit.html
Upvotes: 1
Reputation: 301147
Since it seems like dlls
folder was already in SVN, you can commit the dlls folder itself. Else you can from lib
.
Upvotes: 1