After a merge, I might have both content-changes as well as property-changes to a file:
>svn st foo.h
MM foo.h
Is there a way to keep the content-changes, but revert the property-changes?
I could copy the file to a temporary location, revert, then copy back:
>cp foo.h /tmp
>svn revert foo.h
>mv -f /tmp/foo.h foo.h
>svn st foo.h
M foo.h
But that would be cumbersome with many files, without writing a separate script.
I was hoping there may be an svn option that I've missed.