How to delete .svn Files from Mac; Aasim Naseem, July 18, 2011 | Read Count: 14,490April 29, 2025 Category: My Tutorials > Code RepositoriesHere is a quick way to delete all .svn files from a particular directory and all its child directories: Open your terminal, navigate to the directory from where you want to delete .svn files; It’s good to show all hidden files first. Type the following command: rm -rf `find . -type d -name .svn Thats it. Update 28.May.2k13 You can also use the following command for the same purpose: find ./ -name ".svn" | xargs rm -Rf Update 21.July.2k11 This command will not entertain those directories which has space in their name. Can anyone solve this issue? Author Profile Aasim Naseem Hey, Thanks for your interest. I’m a PMP, AWS Solutions Architect, and Scrum Master certified professional with 17+ years of hands-on experience leading projects, building teams, and helping organizations deliver software solutions better, faster, and smarter. Outside of work, I’ve got a deep curiosity for history — especially ancient civilizations like Egypt. I also enjoy reflecting on the everyday moments that shape how we live and work. This blog is my space to share insights, lessons, and thoughts from both my professional journey and personal interests. Thanks for reading — and I hope you will find something here that matches your interest. Latest entries IslamJune 6, 2025 | Read Count: 282Economic impact of Eid-ul-Adha PMP CertificationMay 23, 2025 | Read Count: 493Best PMP Study Resources for 2025 (Books, Courses, Tools & More) Agile & FrameworksMay 7, 2025 | Read Count: 463Agile vs Scrum: Finally Understanding the Difference Agile & FrameworksApril 25, 2025 | Read Count: 493When Not To Use Agile: 5 Signs You Need a Different Approach Code Repositories .svn files delete on machow to delete .svn files on macshow hidden files on macsvn on mac
Code Repositories Daily Git January 9, 2012 | Read Count: 13,483April 29, 2025 Category: My Tutorials > Code RepositoriesHi everyone; So long its been when I last posted anything on my blog; The reason was again the same, some tight schedules and some other home activities; But Notw I’m back; Say welcome please; (: Today’s post is simple; Now a days me and… Read More
Code Repositories Guidelines for Using Code Repositories January 13, 2011 | Read Count: 14,484April 29, 2025 Category: My Tutorials > Code RepositoriesHello everyone; Hope you are doing good at your desks; Today im lil technical; Will talk about code repositories and their usages; This is an essential checklist for playing with code repositories; Everyone need to follow this; If I miss anything, or any point where you… Read More