Penguin

Differences between version 11 and previous revision of SVNNotes.

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

Newer page: version 11 Last edited on Wednesday, July 19, 2006 5:07:22 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,12 @@
 Random SubVersion notes. 
  
 !!! Can't get rid of that pesky external item in your svn tree? 
  
-<pre >  
- svn propdel svn:externals  
- </pre
+<tt >svn propdel svn:externals</tt > will delete that external repository from your own tree for good!  
  
-will delete that external repository from your own tree for good
+!!! Status Characters  
  
-  
-!!! Status Characters  
 <?plugin OldStyleTable 
 |*Char*|*Meaning* 
 |U|Updated your (unmodified?) copy to the latest version 
 |C|Conflict while updating 
@@ -53,12 +49,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>