开发者

SVN is not recognizing the changed files

开发者 https://www.devze.com 2022-12-25 01:55 出处:网络
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 c

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 merge to get the edits back to trunk.

If it was a folder outside of a working copy then the easiest way is to rsync it back in and use --exclude=.svn which wont sync the .svn metadata.


If you're on Windows, try copying all the files, but not any .svn folders.

As an aside, I may be missing something, but this doesn't sound right. Normally, you commit your changes to the repository on a branch, then merge that branch into the trunk. What you've described sounds like you're cheating a bit. I find it helpful to think in terms of repository files and not local files.


From what you describe (making changes in a checked out branch, then trying to commit them on the trunk by copying them on file system level) you are trying to circumvent SVN, working against it, rather than working with it.

I suggest you start by reading the most important chapters SVN book to familiarize yourself with how SVN is supposed to be used. This shouldn'#t take longer than a few hours and will likely pay off within days. When you have to work with SVN, working with it, rather than against it, will save you a lot of trouble in the long run.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号