Skip to content

Commit

Permalink
Added another way to find org files (but commented out)
Browse files Browse the repository at this point in the history
  • Loading branch information
timlinux committed Nov 12, 2011
1 parent b41472f commit cf7b989
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions scripts/remove_svn_conflict_files.sh
Expand Up @@ -10,3 +10,7 @@
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
#rm $(git status | grep orig | awk '{print $2}')
#rm $(git status | grep LOCAL | awk '{print $2}')
#rm $(git status | grep REMOTE | awk '{print $2}')
#

0 comments on commit cf7b989

Please sign in to comment.