We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
qgis
Learn more about funding links in repositories.
Report abuse
There was an error while loading. Please reload this page.
1 parent 730a319 commit 50aef7dCopy full SHA for 50aef7d
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