SVN Can't revert 'mydir' without reverting parent

I just wanted to revert a whole directory so I typed:

svn revert mydir

Then I realized it was wrong and it should have been:

svn -R revert mydir

After typing this last command I receive the error "svn: E155038: Can't revert 'mydir' without reverting parent".

I've moved to 'mydir' and then try the svn -R revert . but still it returns the same error.

How can I revert this directory recursively so I can get the previous version from the server?


The problem is that 'mydir' was not added to the SVN yet so there was not a previous version to revert to. If you revert parent directory you will lose any changes done in 'mydir' directory.

链接地址: http://www.djcxy.com/p/20444.html

上一篇: 发现JavaScript CDN命中率

下一篇: SVN无法还原父母时无法恢复'mydir'