SVN - how do I commit previous version back into svn? -
i in version 100 svn co -r92 http://www.projectname.svn/trunk projectname seems work how v92 version committed? if svn conflicts if svn commit won't work
any idea's i'm lost here
svn -rhead # sure you're updated latest head svn merge -rhead:92 . # reverse-merge revision 92 svn commit # commit
Comments
Post a Comment