Skip to content

Commit cf7b989

Browse files
committedNov 12, 2011
Added another way to find org files (but commented out)
1 parent b41472f commit cf7b989

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed
 

‎scripts/remove_svn_conflict_files.sh

+4
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,7 @@
1010
for FILE in `find . -name *.orig`; do echo "Deleting reject: $FILE"; rm -i $FILE; done
1111
for FILE in `find . -name *.rej`; do echo "Deleting reject: $FILE"; rm -i $FILE; done
1212
for FILE in `find . -name *.tmp | grep -v "\.svn"`; do echo "Deleting reject: $FILE"; rm -i $FILE; done
13+
#rm $(git status | grep orig | awk '{print $2}')
14+
#rm $(git status | grep LOCAL | awk '{print $2}')
15+
#rm $(git status | grep REMOTE | awk '{print $2}')
16+
#

0 commit comments

Comments
 (0)
Please sign in to comment.