deleting managed content using svn

2013-08-05 Thread Robert Huff

I have a system that uses svn to track src+ports+doc.
For reasons I won't get into, I want to scrub all svn-managed
material under src in preparation for grabbing a completely clean
copy.
Neither on-system documentation nor the deeper documentation
listed therein show how to do this.  Or at least not in a way my
brain is currently processing.  :-)
Is there a better way than rm -rf?

Respectfully,


Robert Huff


___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: deleting managed content using svn

2013-08-05 Thread Matthew Seaman
On 05/08/2013 13:18, Robert Huff wrote:
 
   I have a system that uses svn to track src+ports+doc.
   For reasons I won't get into, I want to scrub all svn-managed
 material under src in preparation for grabbing a completely clean
 copy.

In principle SVN will be able to tell you if your checked out copy
differs at all from what is in the repo.  However, given you've said you
don't want to do that

   Neither on-system documentation nor the deeper documentation
 listed therein show how to do this.  Or at least not in a way my
 brain is currently processing.  :-)
   Is there a better way than rm -rf?

Nope.  rm -rf of the checked out filesystem is going to blow away
everything you had and let you start again from scratch.  The only
things that could remain are entries under ~/.subversion (or
/root/.subversion) which will contain such things as records of SSL keys
to trust or login details if you needed a password for access.  You
probably don't need to worry about doing anything to those.

Cheers,

Matthew




___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: deleting managed content using svn

2013-08-05 Thread Robert Huff

Matthew Seaman writes:

  For reasons I won't get into, I want to scrub all svn-managed
   material under src in preparation for grabbing a completely clean
   copy.
  
  Is there a better way than rm -rf?
  
  Nope.  rm -rf of the checked out filesystem is going to blow away
  everything you had and let you start again from scratch.  The only
  things that could remain are entries under ~/.subversion (or
  /root/.subversion) which will contain such things as records of SSL keys
  to trust or login details if you needed a password for access.  You
  probably don't need to worry about doing anything to those.

Thanks.


Robert Huff

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org