Giri
Giri

Reputation: 85

Adding new files in SVN

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

Answers (2)

Vijay Agrawal
Vijay Agrawal

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

manojlds
manojlds

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

Related Questions