We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3778d35 commit 8c91fceCopy full SHA for 8c91fce
scripts/remove_svn_conflict_files.sh
@@ -0,0 +1,12 @@
1
+#!/bin/bash
2
+
3
+#
4
+# A simple script to get rid of .orig and .rej files left in
5
+# your repository by svn. It will request confirmation before
6
+# deleting each file.
7
8
+# Tim Sutton, May 2008
9
10
+for FILE in `find . -name *.orig`; do echo "Deleting reject: $FILE"; rm -i $FILE; done
11
+for FILE in `find . -name *.rej`; do echo "Deleting reject: $FILE"; rm -i $FILE; done
12
+for FILE in `find . -name *.tmp | grep -v "\.svn"`; do echo "Deleting reject: $FILE"; rm -i $FILE; done
0 commit comments