Guest User

svn bug?

a guest
Apr 22nd, 2014
207
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.05 KB | None | 0 0
  1. X:\>svn --version
  2. svn, version 1.8.8 (r1568071)
  3. compiled Apr 12 2014, 14:17:25 on x86-microsoft-windows
  4.  
  5. Copyright (C) 2013 The Apache Software Foundation.
  6. This software consists of contributions made by many people;
  7. see the NOTICE file for more information.
  8. Subversion is open source software, see http://subversion.apache.org/
  9.  
  10. The following repository access (RA) modules are available:
  11.  
  12. * ra_svn : Module for accessing a repository using the svn network protocol.
  13. - with Cyrus SASL authentication
  14. - handles 'svn' scheme
  15. * ra_local : Module for accessing a repository on local disk.
  16. - handles 'file' scheme
  17. * ra_serf : Module for accessing a repository via WebDAV protocol using serf.
  18. - using serf 1.3.4
  19. - handles 'http' scheme
  20. - handles 'https' scheme
  21.  
  22. X:\>mkdir repo
  23.  
  24. X:\>svnadmin create repo
  25.  
  26. X:\>svn co file:///x:/repo co1
  27. Checked out revision 0.
  28.  
  29. X:\>svn co file:///x:/repo co2
  30. Checked out revision 0.
  31.  
  32. X:\>cd co1
  33.  
  34. X:\co1>md oldtree\parent\child newtree
  35.  
  36. X:\co1>copy nul oldtree\parent\child\file
  37. 1 Datei(en) kopiert.
  38.  
  39. X:\co1>svn add oldtree newtree
  40. A oldtree
  41. A oldtree\parent
  42. A oldtree\parent\child
  43. A oldtree\parent\child\file
  44. A newtree
  45.  
  46. X:\co1>svn ci -m "Preparation"
  47. Adding newtree
  48. Adding oldtree
  49. Adding oldtree\parent
  50. Adding oldtree\parent\child
  51. Adding oldtree\parent\child\file
  52. Transmitting file data .
  53. Committed revision 1.
  54.  
  55. X:\co1>cd \co2
  56.  
  57. X:\co2>svn up
  58. Updating '.':
  59. A oldtree
  60. A oldtree\parent
  61. A oldtree\parent\child
  62. A oldtree\parent\child\file
  63. A newtree
  64. Updated to revision 1.
  65.  
  66. X:\co2>cd \co1
  67.  
  68. X:\co1>svn rm oldtree\parent\child
  69. D oldtree\parent\child
  70. D oldtree\parent\child\file
  71.  
  72. X:\co1>svn cp oldtree\parent ..\co2\newtree\parent
  73. A X:\co2\newtree\parent
  74.  
  75. X:\>cd \co2
  76.  
  77. X:\co2>svn ci -m "Will it work?"
  78. Adding newtree\parent
  79. Deleting newtree\parent\child
  80. svn: E160016: Commit failed (details follow):
  81. svn: E160016: Path 'parent/child' not present
Advertisement
Add Comment
Please, Sign In to add comment