Advertisement
Guest User

Untitled

a guest
Jun 16th, 2019
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. (..)/mysvn/foo
  2. (..)/MySVN/Foo
  3.  
  4. #svn up removes local copies of external resources when svn:externals is deleted
  5. #so we need a backup
  6. cp -R library/resource /backup
  7. svn propdel 'svn:externals' library
  8. svn up
  9. cp -R /backup/resource library
  10. svn add library/resource
  11. svn commit -m "this will break other working copies, but we have the resource in our repo now"
  12.  
  13. svn: URL 'svn://path.to/external/resource' of existing directory
  14. 'library/resource' does not match expected URL 'svn://my.own.repository/library/resource'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement