The command should be working as you expect.
The "*" is getting globbed, which it shouldn't be doing. So, you're running: svn propset svn:ignore [value] app config db doc lib log nbproject public ... tmp (since app was the first folder affected, I'm guessing there's another folder before it).
2 things you can try:
- Specify a list file: svn propset svn:ignore tmp -F .svnignore
- Just specify the path: svn propset sgn:ignore svn:ignore tmp. This should open your default text editor (if configured) to allow you to write and save the list.
Reply to comment
Since you're now attempting to correct the setting, propedit and propdel would work fine -- especially if you have other changes within the directory.
But, if you don't have any other changes to worry about (check svn st), it'll be faster using svn revert -R and svn propset.
