Last active
December 21, 2015 04:18
-
-
Save zxkletters/6248088 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
find . -name .svn|xargs rm -rf | |
find . -name .settings | xargs rm -rf | |
find . -name .project | xargs rm -rf | |
find . -name .classpath | xargs rm -rf | |
find . -name target | xargs rm -rf | |
# === generate ignore file | |
echo ".project" >> ignore | |
echo ".classpath" >> ignore | |
echo "target" >> ignore | |
echo ".settings" >> ignore | |
svn propset svn:ignore -F ./ignore -R . |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment