On Wed, Feb 15, 2012 at 8:28 PM, Jeremy Baron jeremy@tuxmachine.com wrote:
On Wed, Feb 15, 2012 at 20:17, Chad innocentkiller@gmail.com wrote:
The .git folders will exist after you clone the repository. There won't be any .svn directories there to clean up.
.git folder (singular).
Subversion puts .svn in nested subdirectories, git doesn't. There's only one .git and it's in the root of the repo working dir. (unless you're using a bare repo)
So, you can remove with just `rm -rf path/to/git/repo/.git`.
Yeah, I changed the plural in that sentence like 3 times. Thanks for correcting me.
-Chad