mirror of
https://github.com/qgis/QGIS.git
synced 2025-10-06 00:07:29 -04:00
Added a small script to tidy away tmp, orig and rej files left by svn
git-svn-id: http://svn.osgeo.org/qgis/trunk@8458 c8812cc2-4d05-0410-92ff-de0c093fc19c
This commit is contained in:
parent
3778d35112
commit
8c91fce2e1
12
scripts/remove_svn_conflict_files.sh
Executable file
12
scripts/remove_svn_conflict_files.sh
Executable file
@ -0,0 +1,12 @@
|
||||
#!/bin/bash
|
||||
|
||||
#
|
||||
# A simple script to get rid of .orig and .rej files left in
|
||||
# your repository by svn. It will request confirmation before
|
||||
# deleting each file.
|
||||
#
|
||||
# Tim Sutton, May 2008
|
||||
|
||||
for FILE in `find . -name *.orig`; do echo "Deleting reject: $FILE"; rm -i $FILE; done
|
||||
for FILE in `find . -name *.rej`; do echo "Deleting reject: $FILE"; rm -i $FILE; done
|
||||
for FILE in `find . -name *.tmp | grep -v "\.svn"`; do echo "Deleting reject: $FILE"; rm -i $FILE; done
|
Loading…
x
Reference in New Issue
Block a user