Tag Archives: Subversion
Disadvantages of Git
Posted on 12. Jan, 2010 by forouzani.
0
Below is what I consider to be the disadvantages of Git – when compared to subversion. I should point out that these are just my niggles with git – I still prefer it over subversion because stashing is cool, and there is always less merging when using Git.
Revision Numbers
Git uses “hashes” which are completely unreadable [...]
Continue Reading
Delete all .svn folders using Windows Command Prompt
Posted on 12. Apr, 2007 by forouzani.
You can use the following command to delete all .svn folders in your subversion directory recursively.
FOR /R . %f IN (.svn) DO RD /s /q %f


