views:

15

answers:

1

hi i want to commit only the property of a folder not the locally modified files inside it.

when i am using svn commit it is commiting also the modified files.please tell me how to get

this .

thanks

+1  A: 

If you set a property with svn propset (adding to ignore list folder /help):

svn propset svn:ignore help

You can use --depth flag when doing check in:

svn ci --depth=immediates

This will skip modifications made in files.You can also play with other values for --depth.

Pmod