Penguin

Differences between version 12 and revision by previous author of SVNNotes.

Other diffs: Previous Major Revision, Previous Revision, or view the Annotated Edit History

Newer page: version 12 Last edited on Wednesday, July 19, 2006 5:07:46 pm by AristotlePagaltzis Revert
Older page: version 10 Last edited on Tuesday, July 18, 2006 11:55:07 am by PhilMurray Revert
@@ -1,16 +1,8 @@
 Random SubVersion notes. 
  
-!!! Can't get rid of that pesky external item in your svn tree?  
+!!! Status Characters  
  
-<pre>  
-svn propdel svn:externals  
-</pre>  
-  
-will delete that external repository from your own tree for good!  
-  
-  
-!!! Status Characters  
 <?plugin OldStyleTable 
 |*Char*|*Meaning* 
 |U|Updated your (unmodified?) copy to the latest version 
 |C|Conflict while updating 
@@ -53,12 +45,18 @@
  svnadmin dump -r 0:173 repo1 | svnadmin load repo2 
  </verbatim> 
  
 This creates a new repository called <tt>repo2</tt> and dumps revisions 0 to 173 (inclusive) from <tt>repo1</tt> into it. 
+  
+!!! Getting rid of external items in your repository  
+  
+ <verbatim>  
+ svn propdel svn:externals  
+ </verbatim>  
  
 !!! Checking out a project to use 
  
 If you want to checkout a local repository into the current directory type: 
  
  <verbatim> 
  svn co file:///home/my-svn-dir/name-of-my-repository . 
  </verbatim>