I had made changes in a folder called “branch”, and now that its working I want to move all the src folder to the folder “trunk”. But by copying src from local branch, pasting on local trunk and commiting the SVN commits nothing. Its like nothing had changed. Any idea how to commit this?
Related question:
How can I force subversion to commit an unchanged file?
(Would work for me, but I know nothing about properties, exactly which one could I change and with which value to not crash something?)
You cant do that because youre going to override the svn metadata which will cause all kinds of problems.
If branch was actually a branch and a working copy then you need to read up on
svn mergeto get the edits back totrunk.If it was a folder outside of a working copy then the easiest way is to
rsyncit back in and use--exclude=.svnwhich wont sync the .svn metadata.